Warn users when installing EOL .NET versions (#245)

This commit is contained in:
GGG KILLER
2021-11-23 10:58:49 -03:00
committed by GitHub
parent 76ddd67c90
commit 499789684c
2 changed files with 13 additions and 2 deletions

View File

@ -285,7 +285,14 @@ export class DotnetCoreInstaller {
);
}
return releasesInfo[0]['releases.json'];
const releaseInfo = releasesInfo[0];
if (releaseInfo['support-phase'] === 'eol') {
core.warning(
`${releaseInfo['product']} ${releaseInfo['channel-version']} is no longer supported and will not receive security updates in the future. Please refer to https://aka.ms/dotnet-core-support for more information about the .NET support policy.`
);
}
return releaseInfo['releases.json'];
}
private version: string;