From e5f5846dc4f6ad4681253d108296b34dc49706d5 Mon Sep 17 00:00:00 2001 From: Kevin Minehart Date: Tue, 11 Mar 2025 09:59:40 -0500 Subject: [PATCH] Add the 'always-cache' option --- action.yml | 3 +++ dist/cache-save/index.js | 8 ++++---- src/cache-save.ts | 8 ++++---- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/action.yml b/action.yml index 9946e47..169ad2d 100644 --- a/action.yml +++ b/action.yml @@ -15,6 +15,9 @@ inputs: cache: description: Used to specify whether caching is needed. Set to true, if you'd like to enable caching. default: true + always-cache: + description: If enabled, stores the cache even in the event of a cache hit. This will result in a larger Go build (and test) cache, but less repeated test runs. + default: false cache-dependency-path: description: 'Used to specify the path to a dependency file - go.sum' architecture: diff --git a/dist/cache-save/index.js b/dist/cache-save/index.js index b1e02fc..32494fb 100644 --- a/dist/cache-save/index.js +++ b/dist/cache-save/index.js @@ -89440,7 +89440,7 @@ function run(earlyExit) { try { const cacheInput = core.getBooleanInput('cache'); if (cacheInput) { - yield cachePackages(); + yield cachePackages(core.getBooleanInput('always-cache')); if (earlyExit) { process.exit(0); } @@ -89459,7 +89459,7 @@ function run(earlyExit) { }); } exports.run = run; -const cachePackages = () => __awaiter(void 0, void 0, void 0, function* () { +const cachePackages = (...args_1) => __awaiter(void 0, [...args_1], void 0, function* (alwaysCache = false) { const packageManager = 'default'; const state = core.getState(constants_1.State.CacheMatchedKey); const primaryKey = core.getState(constants_1.State.CachePrimaryKey); @@ -89477,8 +89477,8 @@ const cachePackages = () => __awaiter(void 0, void 0, void 0, function* () { core.info('Primary key was not generated. Please check the log messages above for more errors or information'); return; } - if (primaryKey === state) { - core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`); + if (primaryKey === state && !alwaysCache) { + core.info(`Cache hit occurred on the primary key ${primaryKey} and always-cache is 'false', not saving cache.`); return; } const cacheId = yield cache.saveCache(cachePaths, primaryKey); diff --git a/src/cache-save.ts b/src/cache-save.ts index 5baefde..9d9afd2 100644 --- a/src/cache-save.ts +++ b/src/cache-save.ts @@ -19,7 +19,7 @@ export async function run(earlyExit?: boolean) { try { const cacheInput = core.getBooleanInput('cache'); if (cacheInput) { - await cachePackages(); + await cachePackages(core.getBooleanInput('always-cache')); if (earlyExit) { process.exit(0); @@ -37,7 +37,7 @@ export async function run(earlyExit?: boolean) { } } -const cachePackages = async () => { +const cachePackages = async (alwaysCache: boolean = false) => { const packageManager = 'default'; const state = core.getState(State.CacheMatchedKey); @@ -71,9 +71,9 @@ const cachePackages = async () => { return; } - if (primaryKey === state) { + if (primaryKey === state && !alwaysCache) { core.info( - `Cache hit occurred on the primary key ${primaryKey}, not saving cache.` + `Cache hit occurred on the primary key ${primaryKey} and always-cache is 'false', not saving cache.` ); return; }