From d3af3ec85440b02334367c60de807b1ca0ae76f5 Mon Sep 17 00:00:00 2001 From: Gerrit Grunwald Date: Fri, 2 Feb 2024 16:59:47 +0100 Subject: [PATCH] Added the option jdk+crac Because with Azul Zulu one can also use jdk+crac in combination with version 17 and 21, this was added to the README.md and advanced-usage.md. This PR contains no code changes, just documentation. --- README.md | 2 +- docs/advanced-usage.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 92425cc..a0d7229 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ This action allows you to work with Java and Scala projects. - `distribution`: _(required)_ Java [distribution](#supported-distributions). - - `java-package`: The packaging variant of the chosen distribution. Possible values: `jdk`, `jre`, `jdk+fx`, `jre+fx`. Default value: `jdk`. + - `java-package`: The packaging variant of the chosen distribution. Possible values: `jdk`, `jre`, `jdk+fx`, `jre+fx`, `jdk+crac`. Default value: `jdk`. - `architecture`: The target architecture of the package. Possible values: `x86`, `x64`, `armv7`, `aarch64`, `ppc64le`. Default value: Derived from the runner machine. diff --git a/docs/advanced-usage.md b/docs/advanced-usage.md index ede356f..2c795e9 100644 --- a/docs/advanced-usage.md +++ b/docs/advanced-usage.md @@ -58,7 +58,7 @@ steps: with: distribution: 'zulu' java-version: '21' - java-package: jdk # optional (jdk, jre, jdk+fx or jre+fx) - defaults to jdk + java-package: jdk # optional (jdk, jre, jdk+fx or jre+fx, jdk+crac) - defaults to jdk - run: java -cp java HelloWorldApp ```