File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6100,12 +6100,12 @@ function run() {
6100
6100
if (isPyPyVersion(version)) {
6101
6101
const installed = yield finderPyPy.findPyPyVersion(version, arch);
6102
6102
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})`);
6104
6104
}
6105
6105
else {
6106
6106
const installed = yield finder.useCpythonVersion(version, arch);
6107
6107
pythonVersion = installed.version;
6108
- core.info(`Successfully setup ${installed.impl} (${pythonVersion})`);
6108
+ core.info(`Successfully set up ${installed.impl} (${pythonVersion})`);
6109
6109
}
6110
6110
const cache = core.getInput('cache');
6111
6111
if (cache && utils_1.isCacheFeatureAvailable()) {
Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ async function run() {
41
41
const installed = await finderPyPy . findPyPyVersion ( version , arch ) ;
42
42
pythonVersion = `${ installed . resolvedPyPyVersion } -${ installed . resolvedPythonVersion } ` ;
43
43
core . info (
44
- `Successfully setup PyPy ${ installed . resolvedPyPyVersion } with Python (${ installed . resolvedPythonVersion } )`
44
+ `Successfully set up PyPy ${ installed . resolvedPyPyVersion } with Python (${ installed . resolvedPythonVersion } )`
45
45
) ;
46
46
} else {
47
47
const installed = await finder . useCpythonVersion ( version , arch ) ;
48
48
pythonVersion = installed . version ;
49
- core . info ( `Successfully setup ${ installed . impl } (${ pythonVersion } )` ) ;
49
+ core . info ( `Successfully set up ${ installed . impl } (${ pythonVersion } )` ) ;
50
50
}
51
51
52
52
const cache = core . getInput ( 'cache' ) ;
You can’t perform that action at this time.
0 commit comments