This commit is contained in:
Kazuhiro Masuda 2025-04-21 00:36:14 +09:00
parent 35853705fb
commit 7c49ba0e44
2 changed files with 2 additions and 2 deletions

2
dist/setup/index.js vendored
View file

@ -97735,7 +97735,7 @@ function run() {
core.warning('The `python-version` input is not set. The version of Python currently in `PATH` will be used.'); core.warning('The `python-version` input is not set. The version of Python currently in `PATH` will be used.');
} }
else { else {
throw new Error(`The python-version input is required.`); throw new Error('The `python-version` input is required.');
} }
} }
const matchersPath = path.join(__dirname, '../..', '.github'); const matchersPath = path.join(__dirname, '../..', '.github');

View file

@ -154,7 +154,7 @@ async function run() {
); );
} else { } else {
throw new Error( throw new Error(
`The python-version input is required.` 'The `python-version` input is required.'
); );
} }
} }