diff --git a/dist/index.js b/dist/index.js index a6448aa..77dd30c 100644 --- a/dist/index.js +++ b/dist/index.js @@ -71054,7 +71054,7 @@ async function unixInstall(version) { core.info(`cache path: ${toolDir}, key: ${cacheKey}`); } catch (_b) { - core.warning(`No cached files found at path "${fullCachePath}".`); + core.warning(`No cached files found at path "${fullCachePath}, key: ${cacheKey}".`); await io.rmRF(fullCachePath); } } diff --git a/src/unix-install.ts b/src/unix-install.ts index 87100be..750ab5b 100644 --- a/src/unix-install.ts +++ b/src/unix-install.ts @@ -72,7 +72,7 @@ export async function unixInstall(version: Version): Promise { toolDir = fullCachePath; core.info(`cache path: ${toolDir}, key: ${cacheKey}`); } catch { - core.warning(`No cached files found at path "${fullCachePath}".`); + core.warning(`No cached files found at path "${fullCachePath}, key: ${cacheKey}".`); await io.rmRF(fullCachePath); } } else {