2019-11-09 00:40:12 +08:00
name : 'Setup Java JDK'
2019-12-07 03:35:32 +08:00
description : 'Set up a specific version of the Java JDK and add the
command-line tools to the PATH'
2019-07-10 22:54:25 +08:00
author : 'GitHub'
2019-12-07 03:36:32 +08:00
inputs :
2019-08-14 04:24:39 +08:00
java-version :
2021-04-05 18:02:27 +08:00
description : 'The Java version to set up. Takes a whole or semver Java version. See examples of supported syntax in README file'
required : true
distribution :
description : 'Java distribution. See the list of supported distributions in README file'
2019-07-11 11:11:48 +08:00
required : true
2019-11-23 04:32:49 +08:00
java-package :
2021-04-05 18:02:27 +08:00
description : 'The package type (jdk, jre, jdk+fx, jre+fx)'
2019-11-23 02:45:27 +08:00
required : false
2019-11-03 12:39:35 +08:00
default : 'jdk'
2019-11-23 04:32:49 +08:00
architecture :
2022-10-11 07:47:17 +08:00
description : "The architecture of the package (defaults to the action runner's architecture)"
2019-11-23 02:45:27 +08:00
required : false
2019-07-11 11:11:48 +08:00
jdkFile :
2021-04-05 18:02:27 +08:00
description : 'Path to where the compressed JDK is located'
required : false
check-latest :
description : 'Set this option if you want the action to check for the latest available version that satisfies the version spec'
2019-07-15 23:26:32 +08:00
required : false
2021-04-05 18:02:27 +08:00
default : false
2019-11-29 06:18:30 +08:00
server-id :
2019-12-07 03:35:32 +08:00
description : 'ID of the distributionManagement repository in the pom.xml
2019-12-21 00:35:06 +08:00
file. Default is `github`'
2019-11-29 06:18:30 +08:00
required : false
2020-07-16 09:53:39 +08:00
default : 'github'
2019-12-20 00:52:26 +08:00
server-username :
2019-12-20 03:28:11 +08:00
description : 'Environment variable name for the username for authentication
2019-12-21 00:35:06 +08:00
to the Apache Maven repository. Default is $GITHUB_ACTOR'
2019-11-29 06:18:30 +08:00
required : false
2020-07-16 09:53:39 +08:00
default : 'GITHUB_ACTOR'
2019-12-20 00:52:26 +08:00
server-password :
2019-12-20 03:28:11 +08:00
description : 'Environment variable name for password or token for
2019-12-21 00:35:06 +08:00
authentication to the Apache Maven repository. Default is $GITHUB_TOKEN'
2019-11-29 06:18:30 +08:00
required : false
2020-07-16 09:53:39 +08:00
default : 'GITHUB_TOKEN'
2019-12-11 05:02:21 +08:00
settings-path :
2019-12-19 03:05:01 +08:00
description : 'Path to where the settings.xml file will be written. Default is ~/.m2.'
2019-12-11 05:02:21 +08:00
required : false
2021-04-05 18:02:27 +08:00
overwrite-settings :
description : 'Overwrite the settings.xml file if it exists. Default is "true".'
required : false
default : true
2020-05-02 19:33:15 +08:00
gpg-private-key :
description : 'GPG private key to import. Default is empty string.'
required : false
gpg-passphrase :
description : 'Environment variable name for the GPG private key passphrase. Default is
$GPG_PASSPHRASE.'
required : false
2021-08-20 01:19:35 +08:00
cache :
2022-06-17 04:47:05 +08:00
description : 'Name of the build platform to cache dependencies. It can be "maven", "gradle" or "sbt".'
2021-08-20 01:19:35 +08:00
required : false
job-status :
description : 'Workaround to pass job status to post job step. This variable is not intended for manual setting'
default : ${{ job.status }}
2022-09-23 20:47:30 +08:00
token :
description : Used to pull java versions from setup-java. Since there is a default value, token is typically not supplied by the user.
default : ${{ github.token }}
2022-01-17 00:33:29 +08:00
mvn-toolchain-id :
description : 'Name of Maven Toolchain ID if the default name of "${distribution}_${java-version}" is not wanted. See examples of supported syntax in Advanced Usage file'
required : false
mvn-toolchain-vendor :
description : 'Name of Maven Toolchain Vendor if the default name of "${distribution}" is not wanted. See examples of supported syntax in Advanced Usage file'
required : false
2020-05-25 02:03:57 +08:00
outputs :
2021-04-05 18:02:27 +08:00
distribution :
description : 'Distribution of Java that has been installed'
2020-05-25 02:03:57 +08:00
version :
description : 'Actual version of the java environment that has been installed'
2021-04-05 18:02:27 +08:00
path :
description : 'Path to where the java environment has been installed (same as $JAVA_HOME)'
2022-09-07 18:34:51 +08:00
cache-hit :
description : 'A boolean value to indicate an exact match was found for the primary key'
2019-07-10 22:54:25 +08:00
runs :
2022-02-22 16:27:25 +08:00
using : 'node16'
2020-05-02 19:33:15 +08:00
main : 'dist/setup/index.js'
post : 'dist/cleanup/index.js'