Skip to content

Commit

Permalink
Add JDK 21 to build matrix
Browse files Browse the repository at this point in the history
...and update actions versions to latest.
  • Loading branch information
melissalinkert committed Feb 29, 2024
1 parent 93d84d2 commit 63a3d0b
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: install # 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 63a3d0b

Please sign in to comment.