1
0
mirror of https://github.com/actions/setup-java.git synced 2025-03-31 15:43:53 +08:00

Merge 8cd9b686db327c49b7d09d61cb7dad64b1584a4b into 3b6c050358614dd082e53cdbc55580431fc4e437

This commit is contained in:
David Liu 2025-03-26 15:06:50 +00:00 committed by GitHub
commit 4ce5e1307e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -74,7 +74,6 @@ steps:
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '21'
- run: java HelloWorldApp.java
```
#### Azul Zulu OpenJDK
@ -85,7 +84,6 @@ steps:
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '21'
- run: java HelloWorldApp.java
```
#### Supported version syntax
@ -211,7 +209,6 @@ steps:
distribution: 'temurin'
java-version: '21'
check-latest: true
- run: java HelloWorldApp.java
```
### Testing against different Java versions
@ -230,7 +227,6 @@ jobs:
with:
distribution: '<distribution>'
java-version: ${{ matrix.java }}
- run: java HelloWorldApp.java
```
### Install multiple JDKs