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 8
8
test :
9
9
strategy :
10
10
matrix :
11
- os : [ubuntu-20.04, macos-12 , windows-latest]
11
+ os : [ubuntu-20.04, macos-15 , windows-latest]
12
12
runs-on : ${{ matrix.os }}
13
13
steps :
14
14
- name : Get sources
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
17
17
- name : Set up Go 1.23.3
18
- uses : actions/setup-go@v3
18
+ uses : actions/setup-go@v5
19
19
with :
20
20
go-version : ' 1.23.3'
21
21
22
22
- name : Run go mod tidy
23
23
run : go mod tidy
24
24
25
25
- name : Run golangci-lint
26
- run : |
27
- go install github.com/golangci/golangci-lint/cmd/[email protected]
28
- golangci-lint run --timeout=500s
26
+ uses : golangci/golangci-lint-action@v6
27
+ with :
28
+ version : v1.62.0
29
+ args : --timeout=500s
30
+ skip-cache : true
29
31
30
32
- name : Run govulncheck
31
33
uses : golang/govulncheck-action@v1
You can’t perform that action at this time.
0 commit comments