File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -63605,7 +63605,8 @@ function run() {
63605
63605
if (cache && cache_utils_1.isCacheFeatureAvailable()) {
63606
63606
const packageManager = 'default';
63607
63607
const cacheDependencyPath = core.getInput('cache-dependency-path');
63608
- core.info(`Version spec is ${versionSpec}`);
63608
+ let goPath = yield io.which('go');
63609
+ core.info(`Version spec is ${versionSpec}, go path is ${goPath}`);
63609
63610
yield cache_restore_1.restoreCache(versionSpec, packageManager, cacheDependencyPath);
63610
63611
}
63611
63612
// add problem matchers
Original file line number Diff line number Diff line change @@ -59,7 +59,8 @@ export async function run() {
59
59
if ( cache && isCacheFeatureAvailable ( ) ) {
60
60
const packageManager = 'default' ;
61
61
const cacheDependencyPath = core . getInput ( 'cache-dependency-path' ) ;
62
- core . info ( `Version spec is ${ versionSpec } ` )
62
+ let goPath = await io . which ( 'go' ) ;
63
+ core . info ( `Version spec is ${ versionSpec } , go path is ${ goPath } ` )
63
64
await restoreCache ( versionSpec , packageManager , cacheDependencyPath ) ;
64
65
}
65
66
You can’t perform that action at this time.
0 commit comments