You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ For more details, see the full release notes on the [releases page](https://git
37
37
38
38
-`architecture`: The target architecture of the package. Possible values: `x86`, `x64`, `armv7`, `aarch64`, `ppc64le`. Default value: Derived from the runner machine.
39
39
40
-
-`jdkFile`: If a use-case requires a custom distribution setup-java uses the compressed JDK from the location pointed by this input and will take care of the installation and caching on the VM.
40
+
-`jdkFile`: If a use-case requires a custom distribution setup-java uses the compressed JDK from the location pointed by this input and will take care of the installation and caching on the VM. Note: `distribution` must be set to 'jdkfile' (case-sensitive; all lowercase) when using this option.
41
41
42
42
-`check-latest`: Setting this option makes the action to check for the latest available version for the version spec.
43
43
@@ -78,7 +78,7 @@ steps:
78
78
with:
79
79
distribution: 'temurin'# See 'Supported distributions' for available options
80
80
java-version: '25'
81
-
- run: java HelloWorldApp.java
81
+
- run: java --version
82
82
```
83
83
84
84
#### Azul Zulu OpenJDK
@@ -89,7 +89,7 @@ steps:
89
89
with:
90
90
distribution: 'zulu'# See 'Supported distributions' for available options
91
91
java-version: '25'
92
-
- run: java HelloWorldApp.java
92
+
- run: java --version
93
93
```
94
94
95
95
#### Supported version syntax
@@ -115,6 +115,7 @@ Currently, the following distributions are supported:
> - The different distributors can provide discrepant list of available versions / supported configurations. Please refer to the official documentation to see the list of supported versions.
0 commit comments