Skip to content

Commit

Permalink
Change warning handler to default
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanZosimov committed Jun 30, 2022
1 parent 5fbb819 commit ccb7da8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion src/setup-python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function resolveVersionInput(): string {
return version;
}

logWarning(
core.warning(
"Neither 'python-version' nor 'python-version-file' inputs were supplied."
);

Expand Down

0 comments on commit ccb7da8

Please sign in to comment.