Skip to content

Commit 657f0b1

Browse files
committed
Support running on ARM64 machines
Closes #63 Closes #64 Closes #71
1 parent 6f612ef commit 657f0b1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ This project uses tags and branches for [release management](https://docs.github
66

77

88
## [Unreleased]
9-
_nothing noteworthy, yet_
9+
### Fixed
10+
- Support running on ARM64 machines [#63](https://github.com/oracle-actions/setup-java/issues/63)
1011

1112
## [1.3.3] - 2024-01-29
1213
### Changed

action.yml

+3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ runs:
4747
shell: bash
4848
run: |
4949
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
5053
DOWNLOAD=$GITHUB_ACTION_PATH/src/Download.java
5154
if [ ! -z "${{ inputs.uri }}" ]; then
5255
$JAVA \

0 commit comments

Comments
 (0)