From a69041ca9f9f72c33ce94580dd70191dd501c392 Mon Sep 17 00:00:00 2001 From: Brian Cristante <33549821+brcrista@users.noreply.github.com> Date: Tue, 3 May 2022 08:43:53 -0400 Subject: [PATCH] Successfully set up (#399) --- dist/setup/index.js | 4 ++-- package-lock.json | 4 ++-- src/setup-python.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index 7c47a470c..1e281a8f3 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -6100,12 +6100,12 @@ function run() { if (isPyPyVersion(version)) { const installed = yield finderPyPy.findPyPyVersion(version, arch); pythonVersion = `${installed.resolvedPyPyVersion}-${installed.resolvedPythonVersion}`; - core.info(`Successfully setup PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})`); + core.info(`Successfully set up PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})`); } else { const installed = yield finder.useCpythonVersion(version, arch); pythonVersion = installed.version; - core.info(`Successfully setup ${installed.impl} (${pythonVersion})`); + core.info(`Successfully set up ${installed.impl} (${pythonVersion})`); } const cache = core.getInput('cache'); if (cache && utils_1.isCacheFeatureAvailable()) { diff --git a/package-lock.json b/package-lock.json index 8ff8176fa..46c3dc4c4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "setup-python", - "version": "3.1.0", + "version": "3.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "setup-python", - "version": "3.1.0", + "version": "3.1.1", "license": "MIT", "dependencies": { "@actions/cache": "^2.0.2", diff --git a/src/setup-python.ts b/src/setup-python.ts index 62c76dba9..37229c598 100644 --- a/src/setup-python.ts +++ b/src/setup-python.ts @@ -41,12 +41,12 @@ async function run() { const installed = await finderPyPy.findPyPyVersion(version, arch); pythonVersion = `${installed.resolvedPyPyVersion}-${installed.resolvedPythonVersion}`; core.info( - `Successfully setup PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})` + `Successfully set up PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})` ); } else { const installed = await finder.useCpythonVersion(version, arch); pythonVersion = installed.version; - core.info(`Successfully setup ${installed.impl} (${pythonVersion})`); + core.info(`Successfully set up ${installed.impl} (${pythonVersion})`); } const cache = core.getInput('cache');