Skip to content

Commit

Permalink
Add JDK 24 EA build
Browse files Browse the repository at this point in the history
Signed-off-by: Emilie <[email protected]>
  • Loading branch information
emilie-robichaud committed Oct 25, 2024
1 parent 8d69299 commit 9ee7c2a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
# os: [macos-latest, ubuntu-latest, windows-latest]
os: [ubuntu-latest]
java-version: [21, 22, 23]
java-version: [22, 23, 24]

runs-on: ${{ matrix.os }}

Expand All @@ -30,13 +30,13 @@ jobs:
with:
website: jdk.java.net
release: ${{ matrix.java-version }}
if: ${{ matrix.java-version != 21 }}
if: ${{ matrix.java-version != 22 }}
- name: Set JDK ${{ matrix.java-version }} from Zulu
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: ${{ matrix.java-version }}
if: ${{ matrix.java-version == 21 }}
if: ${{ matrix.java-version == 22 }}
- name: JDK Version
run: java --version
- name: Enable Maven Cache
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/solutions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
# os: [macos-latest, ubuntu-latest, windows-latest]
os: [ubuntu-latest]
java-version: [21, 22, 23]
java-version: [22, 23, 24]

runs-on: ${{ matrix.os }}

Expand All @@ -30,13 +30,13 @@ jobs:
with:
website: jdk.java.net
release: ${{ matrix.java-version }}
if: ${{ matrix.java-version != 21 }}
if: ${{ matrix.java-version != 22 }}
- name: Set JDK ${{ matrix.java-version }} from Zulu
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: ${{ matrix.java-version }}
if: ${{ matrix.java-version == 21 }}
if: ${{ matrix.java-version == 22 }}
- name: JDK Version
run: java --version
- name: Enable Maven Cache
Expand Down

0 comments on commit 9ee7c2a

Please sign in to comment.