Skip to content

Commit

Permalink
Merge pull request #87 from melissalinkert/jdk21
Browse files Browse the repository at this point in the history
Add JDK 21 to build matrix
  • Loading branch information
sbesson authored Mar 4, 2024
2 parents fa81e2b + bfd68db commit eca9c1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
build:
strategy:
matrix:
java: [8, 11, 17]
java: [8, 11, 17, 21]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
maven_commands: test # default is install
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
Expand Down

0 comments on commit eca9c1c

Please sign in to comment.