diff --git a/dist/setup/index.js b/dist/setup/index.js
index 367e9ed..86edc53 100644
--- a/dist/setup/index.js
+++ b/dist/setup/index.js
@@ -6113,7 +6113,7 @@ function run() {
                 }
             }
             else {
-                core.warning("Step input 'python-version' is not set, the OS native python version will be used");
+                core.warning('The `python-version` input is not set.  The version of Python currently in `PATH` will be used.');
             }
             const matchersPath = path.join(__dirname, '../..', '.github');
             core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
diff --git a/src/setup-python.ts b/src/setup-python.ts
index 3584b59..14700b7 100644
--- a/src/setup-python.ts
+++ b/src/setup-python.ts
@@ -55,7 +55,7 @@ async function run() {
       }
     } else {
       core.warning(
-        "The `python-version` input is not set.  The version of Python currently in `PATH` will be used."
+        'The `python-version` input is not set.  The version of Python currently in `PATH` will be used.'
       );
     }
     const matchersPath = path.join(__dirname, '../..', '.github');