Skip to content

Commit

Permalink
Merge pull request #307 from rhusar/ci-jdk22-ea
Browse files Browse the repository at this point in the history
CI: JDK 21 is now GA.
  • Loading branch information
rhusar authored Jan 2, 2024
2 parents 20aa68c + e7d9629 commit e4e942d
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 @@ -15,13 +15,14 @@ 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.
java: [ 11, 17, 20, 21-ea ]
java: [ 11, 17, 21, 22-ea ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v2
Expand All @@ -31,4 +32,4 @@ jobs:
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B verify
run: mvn --batch-mode --no-transfer-progress verify

0 comments on commit e4e942d

Please sign in to comment.