mirror of
https://github.com/actions/setup-java.git
synced 2025-04-20 18:06:45 +00:00
Update action definition
This commit is contained in:
parent
fb7e2ed37c
commit
fa409a5024
2 changed files with 2 additions and 2 deletions
|
@ -26,8 +26,8 @@ function run() {
|
|||
version = core.getInput('java-version', { required: true });
|
||||
}
|
||||
const arch = core.getInput('architecture', { required: true });
|
||||
const javaPackage = core.getInput('java-package', { required: true });
|
||||
const jdkFile = core.getInput('jdkFile', { required: false }) || '';
|
||||
const javaPackage = core.getInput('java-package', { required: false }) || 'jdk';
|
||||
yield installer.getJava(version, arch, jdkFile, javaPackage);
|
||||
const matchersPath = path.join(__dirname, '..', '.github');
|
||||
console.log(`##[add-matcher]${path.join(matchersPath, 'java.json')}`);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue