From 2b640288f4bca8b206a5a64dd7da8bcd359b953d Mon Sep 17 00:00:00 2001 From: Imran Ismail Date: Mon, 17 Oct 2022 02:13:03 +0800 Subject: [PATCH] use getBooleanInput --- src/installer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer.ts b/src/installer.ts index c64d137..6e144e7 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -11,7 +11,7 @@ let tempDirectory = process.env['RUNNER_TEMPDIRECTORY'] || '' const EnhancedOctokit = GitHub.plugin(throttling) const githubToken = core.getInput('github-token') -const failFast = core.getInput('fail-fast') === 'true' ? true : false +const failFast = core.getBooleanInput('fail-fast') let options: OctokitOptions = { throttle: {