mirror of https://github.com/actions/setup-python
Change warning handler to default
This commit is contained in:
parent
5fbb819407
commit
ccb7da8ae9
|
@ -65283,7 +65283,7 @@ function resolveVersionInput() {
|
||||||
core.info(`Resolved ${versionFile} as ${version}`);
|
core.info(`Resolved ${versionFile} as ${version}`);
|
||||||
return 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;
|
return version;
|
||||||
}
|
}
|
||||||
function run() {
|
function run() {
|
||||||
|
|
|
@ -56,7 +56,7 @@ function resolveVersionInput(): string {
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
|
|
||||||
logWarning(
|
core.warning(
|
||||||
"Neither 'python-version' nor 'python-version-file' inputs were supplied."
|
"Neither 'python-version' nor 'python-version-file' inputs were supplied."
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue