File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6100,12 +6100,12 @@ function run() {
61006100 if (isPyPyVersion(version)) {
61016101 const installed = yield finderPyPy.findPyPyVersion(version, arch);
61026102 pythonVersion = `${installed.resolvedPyPyVersion}-${installed.resolvedPythonVersion}`;
6103- core.info(`Successfully setup PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})`);
6103+ core.info(`Successfully set up PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})`);
61046104 }
61056105 else {
61066106 const installed = yield finder.useCpythonVersion(version, arch);
61076107 pythonVersion = installed.version;
6108- core.info(`Successfully setup ${installed.impl} (${pythonVersion})`);
6108+ core.info(`Successfully set up ${installed.impl} (${pythonVersion})`);
61096109 }
61106110 const cache = core.getInput('cache');
61116111 if (cache && utils_1.isCacheFeatureAvailable()) {
Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ async function run() {
4141 const installed = await finderPyPy . findPyPyVersion ( version , arch ) ;
4242 pythonVersion = `${ installed . resolvedPyPyVersion } -${ installed . resolvedPythonVersion } ` ;
4343 core . info (
44- `Successfully setup PyPy ${ installed . resolvedPyPyVersion } with Python (${ installed . resolvedPythonVersion } )`
44+ `Successfully set up PyPy ${ installed . resolvedPyPyVersion } with Python (${ installed . resolvedPythonVersion } )`
4545 ) ;
4646 } else {
4747 const installed = await finder . useCpythonVersion ( version , arch ) ;
4848 pythonVersion = installed . version ;
49- core . info ( `Successfully setup ${ installed . impl } (${ pythonVersion } )` ) ;
49+ core . info ( `Successfully set up ${ installed . impl } (${ pythonVersion } )` ) ;
5050 }
5151
5252 const cache = core . getInput ( 'cache' ) ;
You can’t perform that action at this time.
0 commit comments