3
0
mirror of https://github.com/actions/setup-dotnet.git synced 2025-04-08 08:19:57 +00:00

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

@ -38,9 +38,9 @@ export async function run() {
}
if (versions.length) {
const includePrerelease: boolean =
(core.getInput('include-prerelease') || 'false').toLowerCase() ===
'true';
const includePrerelease: boolean = core.getBooleanInput(
'include-prerelease'
);
let dotnetInstaller!: installer.DotnetCoreInstaller;
for (const version of new Set<string>(versions)) {
dotnetInstaller = new installer.DotnetCoreInstaller(