There was an error while loading. Please reload this page.
https://github.com/actions/setup-java
Alibaba Dragonwell Usage
NOTE: Alibaba Dragonwell only provides jdk.
Then the latest version of dragonwell of the major version will be obtained.
steps: - uses: actions/checkout@v3 - uses: actions/setup-java@v3 with: distribution: 'dragonwell' java-version: '11' - run: java -version
The result of the above code
Then the corresponding version of dragonwell will be obtained.
steps: - uses: actions/checkout@v3 - uses: actions/setup-java@v3 with: distribution: 'dragonwell' java-version: '11.0.18' - run: java -version