Skip to content

Commit cdb60d5

Browse files
committed
chore(ci): update Java version to 25 in CI configuration files
Updated the Java version from 21 to 25 in the CI configuration files to ensure compatibility with the latest features and improvements. - Updated fuzz-tests.yml - Updated ci.yml - Updated nightly.yml
1 parent b6be24f commit cdb60d5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Set up JDK
5353
uses: actions/setup-java@v5
5454
with:
55-
java-version: 21
55+
java-version: 25
5656
distribution: 'temurin'
5757
- name: Check code style
5858
run: ./mvnw spotless:check
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-24.04
6262
strategy:
6363
matrix:
64-
java: [ 8, 11, 17, 21, 25-ea ]
64+
java: [ 8, 11, 17, 21, 25 ]
6565
distribution: [ 'temurin' ]
6666
fail-fast: false
6767
max-parallel: 5

.github/workflows/fuzz-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/setup-java@v5
4040
with:
4141
distribution: 'temurin'
42-
java-version: '21'
42+
java-version: '25'
4343
cache: 'maven'
4444

4545
- name: Run fuzz tests (fesod module)

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-24.04
3030
strategy:
3131
matrix:
32-
java: [ 8, 11, 17, 21, 25-ea ]
32+
java: [ 8, 11, 17, 21, 25 ]
3333
distribution: [ 'temurin' ]
3434
fail-fast: false
3535
max-parallel: 5

0 commit comments

Comments
 (0)