Commit 2f85a7c 1 parent b67fbb4 commit 2f85a7c Copy full SHA for 2f85a7c
File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,13 @@ jobs:
55
55
56
56
steps :
57
57
- name : Checkout
58
- uses : actions/checkout@v2
58
+ uses : actions/checkout@v4
59
59
with :
60
60
fetch-depth : 0
61
61
62
62
- name : Install Go
63
- uses : actions/setup-go@v2
63
+ uses : actions/setup-go@v5
64
64
with :
65
- stable : ' false'
66
65
go-version : ${{ matrix.go }}
67
66
68
67
- name : Print Go version and environment
76
75
env
77
76
78
77
- name : Go module cache
79
- uses : actions/cache@v2
78
+ uses : actions/cache@v4
80
79
with :
81
- path : ~/go/pkg/mod
80
+ path : |
81
+ ~/go/pkg/mod
82
+ ~/.cache/go-build
83
+ ~/.cache/golangci-lint
82
84
key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
83
85
restore-keys : |
84
86
${{ runner.os }}-go-
@@ -101,7 +103,7 @@ jobs:
101
103
if : matrix.integrationtest
102
104
103
105
- name : Code quality test
104
- uses : golangci/golangci-lint-action@v2
106
+ uses : golangci/golangci-lint-action@v6
105
107
with :
106
108
# Version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
107
109
version : latest
You can’t perform that action at this time.
0 commit comments