diff --git a/dist/setup/index.js b/dist/setup/index.js index 8f6d31a9..53dfb0e9 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -73224,6 +73224,7 @@ function getNode(versionSpec, stable, checkLatest, auth, arch = os.arch()) { } } // check cache + core.debug('check toolcache'); let toolPath; toolPath = tc.find('node', versionSpec, osArch); // If not found in cache, download diff --git a/src/installer.ts b/src/installer.ts index 53f4e633..c7e700b8 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -81,6 +81,7 @@ export async function getNode( } // check cache + core.debug('check toolcache'); let toolPath: string; toolPath = tc.find('node', versionSpec, osArch);