-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a fixed version of GraalVM, as otherwise Oracle JDBC and UCP driv…
…ers fail during build. (#9406)
- Loading branch information
1 parent
8f9f04b
commit 18e9bc1
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,10 +71,9 @@ runs: | |
git config --global core.eol lf | ||
- name: Set up GraalVM | ||
if: ${{ inputs.native-image == 'true' }} | ||
uses: graalvm/[email protected].1 | ||
uses: graalvm/[email protected].4 | ||
with: | ||
java-version: ${{ env.JAVA_VERSION }} | ||
version: ${{ env.GRAALVM_VERSION }} | ||
java-version: ${{ env.GRAALVM_VERSION || env.JAVA_VERSION }} | ||
components: ${{ env.GRAALVM_COMPONENTS }} | ||
check-for-updates: 'false' | ||
set-java-home: 'false' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ on: | |
|
||
env: | ||
JAVA_VERSION: 21 | ||
GRAALVM_VERSION: 21.0.3 | ||
JAVA_DISTRO: oracle | ||
MAVEN_ARGS: | | ||
-B -fae -e | ||
|