You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,8 @@ The action runs [golangci-lint](https://github.com/golangci/golangci-lint) and r
9
9
10
10
## Compatibility
11
11
12
-
*`v4.0.0+` requires an explicit setup-go installation step before using this action: `uses: actions/setup-go@v5`.
12
+
*`v5.0.0+` removes `skip-pkg-cache` and `skip-build-cache` because the cache related to Go itself is already handled by `actions/setup-go`.
13
+
*`v4.0.0+` requires an explicit `actions/setup-go` installation step before using this action: `uses: actions/setup-go@v5`.
13
14
The `skip-go-installation` option has been removed.
14
15
*`v2.0.0+` works with `golangci-lint` version >= `v1.28.3`
15
16
*`v1.2.2` is deprecated due to we forgot to change the minimum version of `golangci-lint` to `v1.28.3` ([issue](https://github.com/golangci/golangci-lint-action/issues/39))
@@ -44,7 +45,7 @@ jobs:
44
45
go-version: '1.21'
45
46
cache: false
46
47
- name: golangci-lint
47
-
uses: golangci/golangci-lint-action@v4
48
+
uses: golangci/golangci-lint-action@v5
48
49
with:
49
50
# Require: The version of golangci-lint to use.
50
51
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
0 commit comments