Skip to content

Commit e4ab7d0

Browse files
committed
Update CI Action to use Java 17 & 21
Maven plugins used in the build now require Java 17. We still target Java 11 for our output.
1 parent ee174cd commit e4ab7d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
java: [11, 17]
11+
java: [17, 21]
1212
name: build with jdk ${{matrix.java}}
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
name: checkout
1717

18-
- uses: actions/setup-java@v3
18+
- uses: actions/setup-java@v4
1919
name: set up jdk ${{matrix.java}}
2020
with:
2121
java-version: ${{matrix.java}}

0 commit comments

Comments
 (0)