File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -63607,8 +63607,7 @@ function run() {
63607
63607
if (cache && cache_utils_1.isCacheFeatureAvailable()) {
63608
63608
const packageManager = 'default';
63609
63609
const cacheDependencyPath = core.getInput('cache-dependency-path');
63610
- core.info(`Version spec is ${versionSpec}, go version is ${goVersion}`);
63611
- yield cache_restore_1.restoreCache(goVersion, packageManager, cacheDependencyPath);
63610
+ yield cache_restore_1.restoreCache(parseGoVersion(goVersion), packageManager, cacheDependencyPath);
63612
63611
}
63613
63612
// add problem matchers
63614
63613
const matchersPath = path_1.default.join(__dirname, '../..', 'matchers.json');
Original file line number Diff line number Diff line change @@ -62,8 +62,7 @@ export async function run() {
62
62
if ( cache && isCacheFeatureAvailable ( ) ) {
63
63
const packageManager = 'default' ;
64
64
const cacheDependencyPath = core . getInput ( 'cache-dependency-path' ) ;
65
- core . info ( `Version spec is ${ versionSpec } , go version is ${ goVersion } ` )
66
- await restoreCache ( goVersion , packageManager , cacheDependencyPath ) ;
65
+ await restoreCache ( parseGoVersion ( goVersion ) , packageManager , cacheDependencyPath ) ;
67
66
}
68
67
69
68
// add problem matchers
You can’t perform that action at this time.
0 commit comments