Skip to content

Commit dd6d545

Browse files
committed
Update GHA Workflow to latest versions
We need Java 11 (for its JDK) and Java 21 for build tools.
1 parent babb2b6 commit dd6d545

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,20 @@ jobs:
99

1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
with:
1414
submodules: true
15-
- name: Set up JDK 11
16-
uses: actions/setup-java@v4
15+
- name: Set up JDKs
16+
uses: actions/setup-java@v5
1717
with:
18-
java-version: 11
1918
distribution: temurin
19+
java-version: |
20+
11
21+
21
2022
- name: Setup Maven
2123
run: echo "MAVEN_OPTS='-Xmx2048m'" > ~/.mavenrc
2224
- name: Cache maven repo
23-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2426
env:
2527
cache-name: cache-maven-repo
2628
with:

0 commit comments

Comments
 (0)