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
* Add support for Adoptium OpenJDK
Refs #191
* Rename distribution to Eclipse Temurin
* Update end-to-end tests in GitHub workflows
* Exclude e2e tests for Temurin JREs for now
* fix version
* Update e2e-versions.yml
* Handle Eclipse Temurin version suffixes ("beta")
* Add test for new version suffix "beta"
* Add updated `index.js`
* fix an issue
Co-authored-by: Maxim Lobanov <[email protected]>
Copy file name to clipboardexpand all lines: README.md
+13-1
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ This action provides the following functionality for GitHub Actions runners:
13
13
- Registering problem matchers for error output
14
14
15
15
## V2 vs V1
16
-
- V2 supports custom distributions and provides support for Zulu OpenJDK and Adopt OpenJDK out of the box. V1 supports only Zulu OpenJDK
16
+
- V2 supports custom distributions and provides support for Zulu OpenJDK, Adopt OpenJDK and Eclipse Temurin out of the box. V1 supports only Zulu OpenJDK
17
17
- V2 requires you to specify distribution along with the version. V1 defaults to Zulu OpenJDK, only version input is required. Follow [the migration guide](docs/switching-to-v2.md) to switch from V1 to V2
18
18
19
19
## Usage
@@ -31,6 +31,17 @@ steps:
31
31
- run: java -cp java HelloWorldApp
32
32
```
33
33
34
+
**Eclipse Temurin**
35
+
```yaml
36
+
steps:
37
+
- uses: actions/checkout@v2
38
+
- uses: actions/setup-java@v2
39
+
with:
40
+
distribution: 'temurin'# See 'Supported distributions' for available options
41
+
java-version: '8'
42
+
- run: java -cp java HelloWorldApp
43
+
```
44
+
34
45
**Zulu OpenJDK**
35
46
```yaml
36
47
steps:
@@ -55,6 +66,7 @@ Currently, the following distributions are supported:
**NOTE:** 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