setup-java
setup-java copied to clipboard
Set up your GitHub Actions workflow with a specific version of Java
**Description:** Add problem matcher for Java compiler diagnostics. **Related issue:** Fixes #286 **Check list:** - [ ] Mark if documentation changes are required. - [ ] Mark if tests were...
**Description:** Currently, `setup-java` configures the installed Java as default, however, there are cases when no change in `JAVA_HOME` is needed. I suggest adding `configure-as-default` boolean input field (default `true`) so...
**Description:** Every time build runs setup-java adds a new toolchain element to toolchains.xml. Even it already exists. ``` jdk 17 temurin temurin_17 C:\actions-runner\_work\_tool\Java_Temurin-Hotspot_jdk\17.0.7-7\x64 jdk 17 temurin temurin_17 C:\actions-runner\_work\_tool\Java_Temurin-Hotspot_jdk\17.0.7-7\x64 jdk 17...
**Description:** In scope of this feature request the support of Oracle GraalVM JDK is requested. **Related PR:** https://github.com/actions/setup-java/pull/501
Currently, as I understand it, the user may specify only one server, as follows: ```yaml - name: Setup Java. uses: actions/setup-java@v1 with: java-version: 1.8 server-id: value-of-server-id server-username: SERVER_USERNAME server-password: SERVER_PASSWORD...
This is a feature request to support adding support for Red Hat build of openjdk to build java applications Have some customers using Red Hat build of OpenJDK **Are you...
**Description:** As we know, OpenJDK used to be the place where free JRE and JDKs were downloaded from, but in the new model consumers should use other vendors like temurin,...
I'm puzzled this doesn't set up problem matchers for compiler messages like ``` /home/runner/work/user/repo/src/[...].java:203: warning: [dep-ann] deprecated item is not annotated with @Deprecated protected String getResource() { /home/runner/work/user/repo/src/[...].java:563: error: cannot...
**Description:** Cache the Maven distribution downloaded by the [official Maven Wrapper](https://maven.apache.org/wrapper/index.html). The cache key should probably be derived from the `.mvn/wrapper/maven-wrapper.properties` file (see [documentation](https://maven.apache.org/wrapper/maven-wrapper-distribution/)), similar to how it is done...
As per the [Blog Post in 2021](https://blog.adoptopenjdk.net/2021/08/goodbye-adoptopenjdk-hello-adoptium/) - AdoptOpenJDK has migrated to the Eclipse Foundation and serves binaries through adoptium.net. **NOTE:** This is not a straight simple swap as some...