From 455b21a1170151173454e44de3bb3325984c7872 Mon Sep 17 00:00:00 2001 From: Eric Zimanyi Date: Sat, 7 May 2022 17:52:54 -0400 Subject: [PATCH] Rebuild files in dist/ --- dist/post_run/index.js | 4 +--- dist/run/index.js | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/dist/post_run/index.js b/dist/post_run/index.js index b53c63c..cac14aa 100644 --- a/dist/post_run/index.js +++ b/dist/post_run/index.js @@ -66447,11 +66447,9 @@ const getIntervalKey = (invalidationIntervalDays) => { function buildCacheKeys() { return __awaiter(this, void 0, void 0, function* () { const keys = []; - let cacheKey = `golangci-lint.cache-`; - keys.push(cacheKey); // Periodically invalidate a cache because a new code being added. // TODO: configure it via inputs. - cacheKey += `${getIntervalKey(7)}-`; + let cacheKey = `golangci-lint.cache-${getIntervalKey(7)}-`; keys.push(cacheKey); if (yield pathExists(`go.mod`)) { // Add checksum to key to invalidate a cache when dependencies change. diff --git a/dist/run/index.js b/dist/run/index.js index df050f0..fd5dee7 100644 --- a/dist/run/index.js +++ b/dist/run/index.js @@ -66447,11 +66447,9 @@ const getIntervalKey = (invalidationIntervalDays) => { function buildCacheKeys() { return __awaiter(this, void 0, void 0, function* () { const keys = []; - let cacheKey = `golangci-lint.cache-`; - keys.push(cacheKey); // Periodically invalidate a cache because a new code being added. // TODO: configure it via inputs. - cacheKey += `${getIntervalKey(7)}-`; + let cacheKey = `golangci-lint.cache-${getIntervalKey(7)}-`; keys.push(cacheKey); if (yield pathExists(`go.mod`)) { // Add checksum to key to invalidate a cache when dependencies change.