File tree Expand file tree Collapse file tree 6 files changed +46
-7
lines changed
token-validation-ktor-demo Expand file tree Collapse file tree 6 files changed +46
-7
lines changed Original file line number Diff line number Diff line change 4646 run : ./mvnw package --settings .github/settings.xml -Pgithub
4747
4848 - name : Publish Test Report
49- uses : mikepenz/action-junit-report@v5
49+ uses : mikepenz/action-junit-report@v6
5050 if : always() # always run even if the previous step fails
5151 with :
5252 include_time_in_summary : ' true'
Original file line number Diff line number Diff line change 1+ name : Deploy Snapshot to GitHub Packages
2+
3+ on :
4+ workflow_dispatch :
5+
6+ permissions :
7+ contents : read
8+ packages : write
9+
10+ jobs :
11+ deploy-snapshot :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Checkout code
15+ uses : actions/checkout@v5
16+
17+ - name : Set up JDK 21
18+ uses : actions/setup-java@v5
19+ with :
20+ java-version : 21
21+ distribution : temurin
22+ cache : maven
23+
24+ - name : Setup build cache
25+ uses : actions/cache@v4
26+ with :
27+ path : ~/.m2/repository
28+ key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
29+ restore-keys : |
30+ ${{ runner.os }}-maven-
31+
32+ - name : Deploy snapshot to GitHub Packages
33+ env :
34+ GITHUB_USERNAME : ${{ github.actor }}
35+ GITHUB_PASSWORD : ${{ secrets.GITHUB_TOKEN }}
36+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
37+ run : |
38+ ./mvnw -Pgithub --settings .github/settings.xml --batch-mode deploy
Original file line number Diff line number Diff line change 1212 architecture, with emphasis on OpenID Connect ID Tokens.
1313 </description >
1414 <url >https://github.com/navikt/token-support</url >
15+
1516 <licenses >
1617 <license >
1718 <name >MIT License</name >
6263 <ktor .version>2.3.12</ktor .version>
6364 <ktor3 .version>3.0.1</ktor3 .version>
6465 <kotlin .code.style>official</kotlin .code.style>
65- <mock-oauth2-server .version>3.0.0 </mock-oauth2-server .version>
66- <nimbus .jose.jwt.version>10.5 </nimbus .jose.jwt.version>
66+ <mock-oauth2-server .version>3.0.1 </mock-oauth2-server .version>
67+ <nimbus .jose.jwt.version>10.6 </nimbus .jose.jwt.version>
6768 <kotest .version>5.9.1</kotest .version>
6869 <kotlin .compiler.jvmTarget>21</kotlin .compiler.jvmTarget>
6970 </properties >
8485 <dependency >
8586 <groupId >org.junit.jupiter</groupId >
8687 <artifactId >junit-jupiter-engine</artifactId >
87- <version >6.0.0 </version >
88+ <version >6.0.1 </version >
8889 </dependency >
8990 </dependencies >
9091 </plugin >
Original file line number Diff line number Diff line change 4848 <dependency >
4949 <groupId >org.wiremock</groupId >
5050 <artifactId >wiremock-standalone</artifactId >
51- <version >3.13.1 </version >
51+ <version >3.13.2 </version >
5252 <scope >test</scope >
5353 </dependency >
5454 <dependency >
Original file line number Diff line number Diff line change 4040 <dependency >
4141 <groupId >org.wiremock</groupId >
4242 <artifactId >wiremock-standalone</artifactId >
43- <version >3.13.1 </version >
43+ <version >3.13.2 </version >
4444 <scope >test</scope >
4545 </dependency >
4646 <dependency >
Original file line number Diff line number Diff line change 4545 <dependency >
4646 <groupId >org.wiremock</groupId >
4747 <artifactId >wiremock-standalone</artifactId >
48- <version >3.13.1 </version >
48+ <version >3.13.2 </version >
4949 <scope >test</scope >
5050 </dependency >
5151 <dependency >
You can’t perform that action at this time.
0 commit comments