Skip to content

Commit

Permalink
Update CI Action 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.
  • Loading branch information
Azquelt committed Jun 17, 2024
1 parent ee174cd commit e4ab7d0
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 e4ab7d0

Please sign in to comment.