Skip to content

Commit

Permalink
Merge pull request #736 from rhusar/ci-jdk21
Browse files Browse the repository at this point in the history
CI: JDK 21 is now GA.
  • Loading branch information
rhusar authored Oct 5, 2023
2 parents 51973f3 + f08e485 commit 733584a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ jobs:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and the latest EA JDK (if available).
java: [ 11, 17, 20, 21-ea ]
java: [ 11, 17, 21 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3.13.0
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 733584a

Please sign in to comment.