Skip to content

Commit b3aee46

Browse files
committed
Update CI workflow actions and Java distribution
- Update actions/checkout v4 to v6, actions/setup-java v3 to v5, actions/cache v3 to v5 - Switch Java distribution from zulu to temurin - Add JDK 25 to the test matrix
1 parent 017989f commit b3aee46

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
java: [17, 21]
17+
java: [17, 21, 25]
1818
steps:
19-
- uses: actions/checkout@v4
20-
- uses: actions/setup-java@v3
19+
- uses: actions/checkout@v6
20+
- uses: actions/setup-java@v5
2121
with:
22-
distribution: 'zulu'
22+
distribution: 'temurin'
2323
java-version: ${{ matrix.java }}
2424
- name: Cache Maven Repository
25-
uses: actions/cache@v3
25+
uses: actions/cache@v5
2626
with:
2727
path: ~/.m2
2828
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)