Skip to content

Commit ccb7da8

Browse files
author
IvanZosimov
committed
Change warning handler to default
1 parent 5fbb819 commit ccb7da8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/setup/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65283,7 +65283,7 @@ function resolveVersionInput() {
6528365283
core.info(`Resolved ${versionFile} as ${version}`);
6528465284
return version;
6528565285
}
65286-
logWarning("Neither 'python-version' nor 'python-version-file' inputs were supplied.");
65286+
core.warning("Neither 'python-version' nor 'python-version-file' inputs were supplied.");
6528765287
return version;
6528865288
}
6528965289
function run() {

src/setup-python.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function resolveVersionInput(): string {
5656
return version;
5757
}
5858

59-
logWarning(
59+
core.warning(
6060
"Neither 'python-version' nor 'python-version-file' inputs were supplied."
6161
);
6262

0 commit comments

Comments
 (0)