Skip to content

Commit

Permalink
gradle.yml workflow: install JDK 21 and 22-ea
Browse files Browse the repository at this point in the history
  • Loading branch information
msgilligan committed Mar 7, 2024
1 parent f46cc07 commit 23804d3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,19 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
java: ['21']
distribution: ['temurin']
fail-fast: false
name: ${{ matrix.os }} JDK ${{ matrix.java }}
name: ${{ matrix.os }} JDK 22
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}
java-version: |
22-ea
21
- name: Cache Gradle packages
uses: actions/cache@v4
with:
Expand Down

0 comments on commit 23804d3

Please sign in to comment.