From 7c49ba0e44ac46db87d28d2bd6ef0370a16f6985 Mon Sep 17 00:00:00 2001 From: Kazuhiro Masuda Date: Mon, 21 Apr 2025 00:36:14 +0900 Subject: [PATCH] Tweak --- dist/setup/index.js | 2 +- src/setup-python.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index 2c450a64..4febd975 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -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.'); } 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'); diff --git a/src/setup-python.ts b/src/setup-python.ts index fd303721..1d394885 100644 --- a/src/setup-python.ts +++ b/src/setup-python.ts @@ -154,7 +154,7 @@ async function run() { ); } else { throw new Error( - `The python-version input is required.` + 'The `python-version` input is required.' ); } }