Skip to content

Commit cb936fc

Browse files
author
Ben Asmussen
committed
Update CI to Java 25
1 parent ed01082 commit cb936fc

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,25 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12-
strategy:
13-
matrix:
14-
java: [ 21 ]
15-
12+
1613
steps:
1714
- uses: actions/checkout@v4
18-
19-
- name: Set up JDK ${{ matrix.java }}
15+
16+
- name: Set up JDK 25
2017
uses: actions/setup-java@v4
2118
with:
22-
java-version: ${{ matrix.java }}
19+
java-version: 25
2320
distribution: 'temurin'
2421
cache: maven
25-
22+
2623
- name: Build with Maven
2724
run: mvn clean install -B -Dgpg.skip=true -Djacoco.skip=true
28-
25+
2926
- name: Upload Test Results
3027
if: always()
3128
uses: actions/upload-artifact@v4
3229
with:
33-
name: test-results-java-${{ matrix.java }}
30+
name: test-results
3431
path: |
3532
target/surefire-reports/
3633
target/it/*/build.log

0 commit comments

Comments
 (0)