diff --git a/dist/save-only/index.js b/dist/save-only/index.js index 338d315..2f8d753 100644 --- a/dist/save-only/index.js +++ b/dist/save-only/index.js @@ -41149,7 +41149,6 @@ function saveImpl(stateProvider) { cacheId = yield cache.saveCache(cachePaths, primaryKey, { uploadChunkSize: utils.getInputAsInt(constants_1.Inputs.UploadChunkSize) }); - // -1 refers to cache not saved if (cacheId != -1) { core.info(`Cache saved with key: ${primaryKey}`); } diff --git a/dist/save/index.js b/dist/save/index.js index e6269b4..10a6548 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -41093,7 +41093,6 @@ function saveImpl(stateProvider) { cacheId = yield cache.saveCache(cachePaths, primaryKey, { uploadChunkSize: utils.getInputAsInt(constants_1.Inputs.UploadChunkSize) }); - // -1 refers to cache not saved if (cacheId != -1) { core.info(`Cache saved with key: ${primaryKey}`); } diff --git a/src/saveImpl.ts b/src/saveImpl.ts index 6c4e904..d8d7674 100644 --- a/src/saveImpl.ts +++ b/src/saveImpl.ts @@ -56,7 +56,6 @@ async function saveImpl(stateProvider: IStateProvider): Promise { uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize) }); - // -1 refers to cache not saved if (cacheId != -1) { core.info(`Cache saved with key: ${primaryKey}`); }