Skip to content

Commit

Permalink
Merge pull request clusterbench#373 from rhusar/ci-jdk21
Browse files Browse the repository at this point in the history
CI: JDK 21 is GA now.
  • Loading branch information
rhusar authored Oct 10, 2023
2 parents dd288da + e2629a2 commit 81a1f6e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
java: [ 11, 17, 20 ]
java: [ 11, 17, 21 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: temurin
# Use 'oracle' distribution for JDK 21 until 'temurin' is available.
distribution: ${{ matrix.java == 21 && 'oracle' || 'temurin' }}
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v3
Expand Down

0 comments on commit 81a1f6e

Please sign in to comment.