Skip to content

Commit

Permalink
Update CI workflow to use Java 17 & 21
Browse files Browse the repository at this point in the history
Maven plugins used in the build now require Java 17. We still target
Java 11 for our output.

Also update the actions used to the latest version.
  • Loading branch information
Azquelt committed Jun 17, 2024
1 parent ee174cd commit 082c607
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17]
java: [17, 21]
name: build with jdk ${{matrix.java}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: checkout

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
name: set up jdk ${{matrix.java}}
with:
java-version: ${{matrix.java}}
Expand Down

0 comments on commit 082c607

Please sign in to comment.