Skip to content

Commit

Permalink
Support running on ARM64 machines
Browse files Browse the repository at this point in the history
Closes #63
Closes #64
Closes #71
  • Loading branch information
sormuras committed Feb 1, 2024
1 parent 6f612ef commit 657f0b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ This project uses tags and branches for [release management](https://docs.github


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

## [1.3.3] - 2024-01-29
### Changed
Expand Down
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ runs:
shell: bash
run: |
JAVA=$JAVA_HOME_17_X64/bin/java
if [ ! -d "$JAVA_HOME_17_X64" ]; then
JAVA=$JAVA_HOME_17_ARM64/bin/java
fi
DOWNLOAD=$GITHUB_ACTION_PATH/src/Download.java
if [ ! -z "${{ inputs.uri }}" ]; then
$JAVA \
Expand Down

0 comments on commit 657f0b1

Please sign in to comment.