Does not seem to work with java-version 13
See original GitHub issueWith java-version: "13"
:
Run actions/setup-java@v12s
##[error]Node run failed with exit code 1
Run actions/setup-java@v1
with:
java-version: 13
architecture: x64
##[error]No valid download found for version 13.x. Check https://static.azul.com/zulu/bin/ for a list of valid versions or download your own jdk file and add the jdkFile argument
##[error]Node run failed with exit code 1
Looking at the https://static.azul.com/zulu/bin/ link, there is a jdk 13. I tried the full sematic version (13.0.0, 13.0.3) thinking perhaps that is what the action script expects. But that did not work as well.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:8 (3 by maintainers)
Top Results From Across the Web
"java -version" not working in command prompt - Stack Overflow
I downloaded this Java JDK and installed it. But when I go to the command prompt to check the version, it says it's...
Read more >How to Change Java Versions in Windows (Updated for JDK 18)
To enable these Java version change commands on your system as well, follow this step-by-step guide. Let's go… Step 1: Installing Multiple Java...
Read more >Java Versions and Features - Marco Behler
You can use this guide to get practical information on how to find and install the latest Java, understand the differences between Java ......
Read more >EWM Eclipse client crashes due to exit code=13 - IBM
Resolving The Problem. Ensure the Eclipse version and Java version are compatible. If the bit version does not match between Eclipse and Java, ......
Read more >How to Change Java Version in an Eclipse Project | Baeldung
In case the Compiler Compliance Level is not the correct one, we can simply uncheck the Use compliance from execution environment option and ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The Zulu CDN files have been updated now to include 13.0.0 in the name format setup-java expected to find (…jdk13.0.0…, not just …jdk13…), and 13 now works. [Confirmed with e.g. https://github.com/HdrHistogram/HdrHistogram/blob/master/.github/workflows/maven.yml#L24 ]. I think we can close this bug.
@giltene Thanks for the two separate steps suggestion, worked like a charm: https://github.com/comodal/json-iterator/blob/master/.github/workflows/gradle.yml#L20
Relevant Gradle config needed: https://github.com/comodal/json-iterator/blob/master/systems.comodal.json_iterator/build.gradle#L196
CC @msgilligan