Skip to content

Commit 82d40c2

Browse files
authored
feat: remove Go cache management (#1024)
1 parent c683728 commit 82d40c2

File tree

5 files changed

+7
-79
lines changed

5 files changed

+7
-79
lines changed

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
# Require: The version of golangci-lint to use.
5050
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
5151
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
52-
version: v1.54
52+
version: v1.57
5353

5454
# Optional: working directory, useful for monorepos
5555
# working-directory: somedir
@@ -71,12 +71,6 @@ jobs:
7171
# subject to other options
7272
# skip-save-cache: true
7373

74-
# Optional: if set to true, then the action won't cache or restore ~/go/pkg.
75-
# skip-pkg-cache: true
76-
77-
# Optional: if set to true, then the action won't cache or restore ~/.cache/go-build.
78-
# skip-build-cache: true
79-
8074
# Optional: The mode to install golangci-lint. It can be 'binary' or 'goinstall'.
8175
# install-mode: "goinstall"
8276
```

action.yml

-8
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,6 @@ inputs:
3535
restore existing caches, subject to other options.
3636
default: 'false'
3737
required: false
38-
skip-pkg-cache:
39-
description: "if set to true then the action doesn't cache or restore ~/go/pkg."
40-
default: 'false'
41-
required: false
42-
skip-build-cache:
43-
description: "if set to true then the action doesn't cache or restore ~/.cache/go-build."
44-
default: 'false'
45-
required: false
4638
install-mode:
4739
description: "The mode to install golangci-lint. It can be 'binary' or 'goinstall'."
4840
default: "binary"

dist/post_run/index.js

+2-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/run/index.js

+2-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/cache.ts

+2-22
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,6 @@ const getLintCacheDir = (): string => {
2323
return path.resolve(`${process.env.HOME}/.cache/golangci-lint`)
2424
}
2525

26-
const getCacheDirs = (): string[] => {
27-
// Not existing dirs are ok here: it works.
28-
const skipPkgCache = core.getInput(`skip-pkg-cache`, { required: true }).trim()
29-
const skipBuildCache = core.getInput(`skip-build-cache`, { required: true }).trim()
30-
const dirs = [getLintCacheDir()]
31-
32-
if (skipBuildCache.toLowerCase() == "true") {
33-
core.info(`Omitting ~/.cache/go-build from cache directories`)
34-
} else {
35-
dirs.push(path.resolve(`${process.env.HOME}/.cache/go-build`))
36-
}
37-
if (skipPkgCache.toLowerCase() == "true") {
38-
core.info(`Omitting ~/go/pkg from cache directories`)
39-
} else {
40-
dirs.push(path.resolve(`${process.env.HOME}/go/pkg`))
41-
}
42-
43-
return dirs
44-
}
45-
4626
const getIntervalKey = (invalidationIntervalDays: number): string => {
4727
const now = new Date()
4828
const secondsSinceEpoch = now.getTime() / 1000
@@ -97,7 +77,7 @@ export async function restoreCache(): Promise<void> {
9777
}
9878
core.saveState(State.CachePrimaryKey, primaryKey)
9979
try {
100-
const cacheKey = await cache.restoreCache(getCacheDirs(), primaryKey, restoreKeys)
80+
const cacheKey = await cache.restoreCache([getLintCacheDir()], primaryKey, restoreKeys)
10181
if (!cacheKey) {
10282
core.info(`Cache not found for input keys: ${[primaryKey, ...restoreKeys].join(", ")}`)
10383
return
@@ -128,7 +108,7 @@ export async function saveCache(): Promise<void> {
128108

129109
const startedAt = Date.now()
130110

131-
const cacheDirs = getCacheDirs()
111+
const cacheDirs = [getLintCacheDir()]
132112
const primaryKey = core.getState(State.CachePrimaryKey)
133113
if (!primaryKey) {
134114
utils.logWarning(`Error retrieving key from state.`)

0 commit comments

Comments
 (0)