mirror of
https://github.com/actions/setup-java.git
synced 2025-04-21 02:16:45 +00:00
fix lint issues
This commit is contained in:
parent
e5c6ca31f3
commit
079229f185
4 changed files with 12 additions and 2 deletions
|
@ -11,6 +11,7 @@ async function run() {
|
|||
if (!version) {
|
||||
version = core.getInput(constants.INPUT_JAVA_VERSION, {required: true});
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
const vendor = core.getInput('vendor', {required: true});
|
||||
const arch = core.getInput(constants.INPUT_ARCHITECTURE, {required: true});
|
||||
|
@ -20,6 +21,9 @@ async function run() {
|
|||
const jdkFile = core.getInput(constants.INPUT_JDK_FILE, {required: false});
|
||||
=======
|
||||
const distro = core.getInput('vendor', {required: true});
|
||||
=======
|
||||
const distro = core.getInput('distro', {required: true});
|
||||
>>>>>>> fix lint issues
|
||||
const arch = core.getInput('architecture', {required: true});
|
||||
const javaPackage = core.getInput('java-package', {required: true});
|
||||
const jdkFile = core.getInput('jdkFile', {required: false}) || '';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue