Change warning handler to default

This commit is contained in:
IvanZosimov 2022-06-30 18:28:17 +02:00
parent 5fbb819407
commit ccb7da8ae9
2 changed files with 2 additions and 2 deletions

2
dist/setup/index.js vendored
View File

@ -65283,7 +65283,7 @@ function resolveVersionInput() {
core.info(`Resolved ${versionFile} as ${version}`);
return version;
}
logWarning("Neither 'python-version' nor 'python-version-file' inputs were supplied.");
core.warning("Neither 'python-version' nor 'python-version-file' inputs were supplied.");
return version;
}
function run() {

View File

@ -56,7 +56,7 @@ function resolveVersionInput(): string {
return version;
}
logWarning(
core.warning(
"Neither 'python-version' nor 'python-version-file' inputs were supplied."
);