refactor: use core.getBooleanInput()

This commit is contained in:
Nogic
2021-11-24 09:08:35 +09:00
parent cb04ff8cb3
commit ba5e53c61d
2 changed files with 4 additions and 5 deletions

3
dist/index.js vendored
View File

@ -478,8 +478,7 @@ function run() {
}
}
if (versions.length) {
const includePrerelease = (core.getInput('include-prerelease') || 'false').toLowerCase() ===
'true';
const includePrerelease = core.getBooleanInput('include-prerelease');
let dotnetInstaller;
for (const version of new Set(versions)) {
dotnetInstaller = new installer.DotnetCoreInstaller(version, includePrerelease);