diff --git a/dist/index.js b/dist/index.js index 4923f05..9ac3d0e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -82210,7 +82210,7 @@ async function downloadZig(arch, platform, version3, useCache = true) { } = version3.includes("+") ? resolveCommit(arch, platform, version3) : await resolveVersion(arch, platform, version3); const cachedPath = toolCache.find(TOOL_NAME, useVersion); if (cachedPath) { - actions.info(`using cached zig install: ${cachedPath}`); + actions.info(`using cached zig install (version ${useVersion}): ${cachedPath}`); return cachedPath; } const cacheKey = `${TOOL_NAME}-${variantName}`; diff --git a/index.js b/index.js index a62212f..8e2a113 100644 --- a/index.js +++ b/index.js @@ -28,7 +28,7 @@ async function downloadZig (arch, platform, version, useCache = true) { const cachedPath = toolCache.find(TOOL_NAME, useVersion) if (cachedPath) { - actions.info(`using cached zig install: ${cachedPath}`) + actions.info(`using cached zig install (version ${useVersion}): ${cachedPath}`) return cachedPath }