npm package diff
Package: @actions/cache
Versions: 4.0.2 - 4.0.3
File: package/lib/cache.js
Index: package/lib/cache.js
===================================================================
--- package/lib/cache.js
+++ package/lib/cache.js
@@ -212,9 +212,9 @@
version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive)
};
const response = yield twirpClient.GetCacheEntryDownloadURL(request);
if (!response.ok) {
- core.debug(`Cache not found for keys: ${keys.join(', ')}`);
+ core.debug(`Cache not found for version ${request.version} of keys: ${keys.join(', ')}`);
return undefined;
}
core.info(`Cache hit for: ${request.key}`);
if (options === null || options === void 0 ? void 0 : options.lookupOnly) {