Skip to content

Commit

Permalink
update snapshot/release builds for jdk23 (#1165)
Browse files Browse the repository at this point in the history
The builds were failing because that version was not
available.
  • Loading branch information
brharrington authored Oct 11, 2024
1 parent 052cce7 commit 04a6b4d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ jobs:
- uses: actions/checkout@v3
- name: Gradle wrapper validation
uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 23
uses: actions/setup-java@v3
with:
java-version: 23
distribution: 'zulu'
cache: 'gradle'
- run: echo "JDK23=$JAVA_HOME" >> $GITHUB_ENV
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ jobs:
fetch-depth: 0
- name: Gradle wrapper validation
uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 23
uses: actions/setup-java@v3
with:
java-version: 23
distribution: 'zulu'
cache: 'gradle'
- run: echo "JDK23=$JAVA_HOME" >> $GITHUB_ENV
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
Expand Down

0 comments on commit 04a6b4d

Please sign in to comment.