Skip to content

Commit 8f73c14

Browse files
committed
Formatting
1 parent e31727c commit 8f73c14

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
@@ -6113,7 +6113,7 @@ function run() {
61136113
}
61146114
}
61156115
else {
6116-
core.warning("Step input 'python-version' is not set, the OS native python version will be used");
6116+
core.warning('The `python-version` input is not set. The version of Python currently in `PATH` will be used.');
61176117
}
61186118
const matchersPath = path.join(__dirname, '../..', '.github');
61196119
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);

src/setup-python.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async function run() {
5555
}
5656
} else {
5757
core.warning(
58-
"The `python-version` input is not set. The version of Python currently in `PATH` will be used."
58+
'The `python-version` input is not set. The version of Python currently in `PATH` will be used.'
5959
);
6060
}
6161
const matchersPath = path.join(__dirname, '../..', '.github');

0 commit comments

Comments
 (0)