We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f612ef commit 657f0b1Copy full SHA for 657f0b1
CHANGELOG.md
@@ -6,7 +6,8 @@ This project uses tags and branches for [release management](https://docs.github
6
7
8
## [Unreleased]
9
-_nothing noteworthy, yet_
+### Fixed
10
+- Support running on ARM64 machines [#63](https://github.com/oracle-actions/setup-java/issues/63)
11
12
## [1.3.3] - 2024-01-29
13
### Changed
action.yml
@@ -47,6 +47,9 @@ runs:
47
shell: bash
48
run: |
49
JAVA=$JAVA_HOME_17_X64/bin/java
50
+ if [ ! -d "$JAVA_HOME_17_X64" ]; then
51
+ JAVA=$JAVA_HOME_17_ARM64/bin/java
52
+ fi
53
DOWNLOAD=$GITHUB_ACTION_PATH/src/Download.java
54
if [ ! -z "${{ inputs.uri }}" ]; then
55
$JAVA \
0 commit comments