Bump com.nimbusds:oauth2-oidc-sdk from 11.7 to 11.7.1 #1602
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
workflow_call: | |
push: | |
branches-ignore: | |
- main | |
env: | |
TZ: Europe/Oslo | |
jobs: | |
test: | |
permissions: | |
contents: "write" | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'maven' | |
- name: Run maven tests | |
run: mvn -B verify |