Commit 65b037b 1 parent 82acd29 commit 65b037b Copy full SHA for 65b037b
File tree 1 file changed +14
-11
lines changed
1 file changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -11,23 +11,26 @@ permissions:
11
11
pull-requests : read
12
12
13
13
jobs :
14
- checks :
15
- name : run checks
14
+ golangci :
15
+ name : lint
16
16
runs-on : ubuntu-latest
17
17
steps :
18
18
- uses : actions/checkout@v4
19
19
- uses : actions/setup-go@v5
20
20
with :
21
21
go-version-file : ' go.mod'
22
22
check-latest : true
23
- - name : install govulncheck
24
- run : go install golang.org/x/vuln/cmd/govulncheck@latest
25
- shell : bash
26
- - name : run govulncheck
27
- run : govulncheck -show verbose ./...
28
- shell : bash
29
23
- name : golangci-lint
30
- uses : golangci/golangci-lint-action@v4
24
+ uses : golangci/golangci-lint-action@v6
31
25
with :
32
- version : ' v1.57'
33
- skip-cache : true
26
+ version : v1.59
27
+ govulncheck :
28
+ name : govulncheck
29
+ runs-on : ubuntu-latest
30
+ steps :
31
+ - id : govulncheck
32
+ uses : golang/govulncheck-action@v1
33
+ with :
34
+ go-version-file : ' go.mod'
35
+ check-latest : true
36
+ go-package : ./...
You can’t perform that action at this time.
0 commit comments