Merge pull request #93 from crazy-max/bool-input

Use `core.getBooleanInput`
This commit is contained in:
CrazyMax 2021-06-23 15:49:45 +02:00 committed by GitHub
commit faca7837b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

4
dist/index.js generated vendored
View file

@ -8433,8 +8433,8 @@ function getInputs() {
driverOpts: yield getInputList('driver-opts', true), driverOpts: yield getInputList('driver-opts', true),
buildkitdFlags: core.getInput('buildkitd-flags') || buildkitdFlags: core.getInput('buildkitd-flags') ||
'--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host', '--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host',
install: /true/i.test(core.getInput('install')), install: core.getBooleanInput('install'),
use: /true/i.test(core.getInput('use')), use: core.getBooleanInput('use'),
endpoint: core.getInput('endpoint'), endpoint: core.getInput('endpoint'),
config: core.getInput('config') config: core.getInput('config')
}; };

View file

@ -24,8 +24,8 @@ export async function getInputs(): Promise<Inputs> {
buildkitdFlags: buildkitdFlags:
core.getInput('buildkitd-flags') || core.getInput('buildkitd-flags') ||
'--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host', '--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host',
install: /true/i.test(core.getInput('install')), install: core.getBooleanInput('install'),
use: /true/i.test(core.getInput('use')), use: core.getBooleanInput('use'),
endpoint: core.getInput('endpoint'), endpoint: core.getInput('endpoint'),
config: core.getInput('config') config: core.getInput('config')
}; };