Skip to content

Commit 30fa53e

Browse files
committed
Issue #78 bump CI matrix from Java 24 to Java 25
1 parent a33c5af commit 30fa53e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/maven.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@ jobs:
3131
- name: Test core library (Java 21)
3232
run: mvn clean test -pl json-java21
3333

34-
test-java24:
35-
name: Test with Tooling (Java 24)
34+
test-java25:
35+
name: Test with Tooling (Java 25)
3636
runs-on: ubuntu-latest
3737

3838
steps:
3939
- uses: actions/checkout@v4
4040

41-
- name: Set up JDK 24
41+
- name: Set up JDK 25
4242
uses: actions/setup-java@v4
4343
with:
44-
java-version: '24'
44+
java-version: '25'
4545
distribution: 'oracle'
4646

4747
- name: Cache Maven dependencies
4848
uses: actions/cache@v4
4949
with:
5050
path: ~/.m2
51-
key: ${{ runner.os }}-m2-java24-${{ hashFiles('**/pom.xml') }}
52-
restore-keys: ${{ runner.os }}-m2-java24
51+
key: ${{ runner.os }}-m2-java25-${{ hashFiles('**/pom.xml') }}
52+
restore-keys: ${{ runner.os }}-m2-java25
5353

54-
- name: Test full project (Java 24)
54+
- name: Test full project (Java 25)
5555
run: mvn clean test

0 commit comments

Comments
 (0)