Rebuild files in dist/

This commit is contained in:
Eric Zimanyi 2022-05-07 17:52:54 -04:00 committed by Sergey Vilgelm
parent d93ab869ca
commit 455b21a117
No known key found for this signature in database
GPG key ID: 08D0E2FF778887E6
2 changed files with 2 additions and 6 deletions

View file

@ -66447,11 +66447,9 @@ const getIntervalKey = (invalidationIntervalDays) => {
function buildCacheKeys() { function buildCacheKeys() {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const keys = []; const keys = [];
let cacheKey = `golangci-lint.cache-`;
keys.push(cacheKey);
// Periodically invalidate a cache because a new code being added. // Periodically invalidate a cache because a new code being added.
// TODO: configure it via inputs. // TODO: configure it via inputs.
cacheKey += `${getIntervalKey(7)}-`; let cacheKey = `golangci-lint.cache-${getIntervalKey(7)}-`;
keys.push(cacheKey); keys.push(cacheKey);
if (yield pathExists(`go.mod`)) { if (yield pathExists(`go.mod`)) {
// Add checksum to key to invalidate a cache when dependencies change. // Add checksum to key to invalidate a cache when dependencies change.

4
dist/run/index.js vendored
View file

@ -66447,11 +66447,9 @@ const getIntervalKey = (invalidationIntervalDays) => {
function buildCacheKeys() { function buildCacheKeys() {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const keys = []; const keys = [];
let cacheKey = `golangci-lint.cache-`;
keys.push(cacheKey);
// Periodically invalidate a cache because a new code being added. // Periodically invalidate a cache because a new code being added.
// TODO: configure it via inputs. // TODO: configure it via inputs.
cacheKey += `${getIntervalKey(7)}-`; let cacheKey = `golangci-lint.cache-${getIntervalKey(7)}-`;
keys.push(cacheKey); keys.push(cacheKey);
if (yield pathExists(`go.mod`)) { if (yield pathExists(`go.mod`)) {
// Add checksum to key to invalidate a cache when dependencies change. // Add checksum to key to invalidate a cache when dependencies change.