2019-11-08 16:40:12 +00:00
|
|
|
name: 'Setup Java JDK'
|
|
|
|
description: 'Set up a specific version of the Java JDK and add the command-line tools to the PATH'
|
2019-07-10 14:54:25 +00:00
|
|
|
author: 'GitHub'
|
|
|
|
inputs:
|
2019-08-13 20:24:39 +00:00
|
|
|
java-version:
|
2019-11-08 16:40:12 +00:00
|
|
|
description: 'The JDK version to make available on the path. Takes a whole or semver JDK version, or 1.x syntax (e.g. 1.8 => JDK 8.x)'
|
2019-07-11 03:11:48 +00:00
|
|
|
required: true
|
|
|
|
architecture:
|
|
|
|
description: 'The architecture (x86, x64) of the JDK.'
|
|
|
|
required: true
|
2019-07-15 15:11:53 +00:00
|
|
|
default: 'x64'
|
2019-07-11 03:11:48 +00:00
|
|
|
jdkFile:
|
|
|
|
description: 'Path to where the compressed JDK is located. The path could be in your source repository or a local path on the agent.'
|
2019-07-15 15:26:32 +00:00
|
|
|
required: false
|
2019-08-13 20:24:39 +00:00
|
|
|
# Deprecated option, do not use. Will not be supported after October 1, 2019
|
|
|
|
version:
|
|
|
|
description: 'Deprecated. Use java-version instead. Will not be supported after October 1, 2019'
|
2019-09-12 14:36:47 +00:00
|
|
|
deprecationMessage: 'The version property will not be supported after October 1, 2019. Use java-version instead'
|
2019-07-10 14:54:25 +00:00
|
|
|
runs:
|
|
|
|
using: 'node12'
|
|
|
|
main: 'lib/setup-java.js'
|