Skip to content

Commit 24ab52b

Browse files
committed
feat: enable Java 25 in CI configurations
1 parent fb25b3d commit 24ab52b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ jobs:
2525
- name: Set up JDK
2626
uses: actions/setup-java@v3
2727
with:
28-
java-version: 21
29-
distribution: 'adopt'
28+
java-version: 25
29+
distribution: 'temurin'
3030
- name: Check code style
3131
run: ./mvnw spotless:check
3232

3333
test:
3434
runs-on: ubuntu-24.04
3535
strategy:
3636
matrix:
37-
java: [ 8, 11, 17, 21]
37+
java: [ 8, 11, 17, 21, 25]
3838
distribution: [ 'adopt' ]
3939
fail-fast: false
40-
max-parallel: 4
40+
max-parallel: 5
4141

4242
name: Test JDK ${{ matrix.java }}
4343
steps:

.github/workflows/fuzz-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v4
1919

20-
- name: Set up JDK 17
20+
- name: Set up JDK
2121
uses: actions/setup-java@v4
2222
with:
2323
distribution: 'temurin'
24-
java-version: '17'
24+
java-version: '25'
2525
cache: 'maven'
2626

2727
- name: Run fuzz tests (fastexcel module)

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-24.04
1212
strategy:
1313
matrix:
14-
java: [ 8, 11, 17, 21]
14+
java: [ 8, 11, 17, 21, 25]
1515
distribution: [ 'adopt' ]
1616
fail-fast: false
17-
max-parallel: 4
17+
max-parallel: 5
1818
name: Test JDK ${{ matrix.java }}
1919
steps:
2020
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)