Skip to content

Commit

Permalink
Update on_release_created_or_updated.yml (#1601)
Browse files Browse the repository at this point in the history
Github action is default to JDK 11 and causing incompatibility issue
with JDK 17 and gradle 8.2.1:
https://github.com/stellar/anchor-platform/actions/runs/12356621680/job/34483414510

This is blocking release
  • Loading branch information
JiahuiWho authored Dec 16, 2024
2 parents c14d85a + 6517143 commit fbecc8e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/on_release_created_or_updated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'

- name: Get EXPECTED_RELEASE_TAG
shell: bash
run: |
Expand Down

0 comments on commit fbecc8e

Please sign in to comment.