File tree 4 files changed +7
-9
lines changed
4 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -13,20 +13,20 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
env :
15
15
GO_VERSION : stable
16
- GOLANGCI_LINT_VERSION : v1.54 .2
16
+ GOLANGCI_LINT_VERSION : v1.56 .2
17
17
CGO_ENABLED : 0
18
18
19
19
steps :
20
20
21
21
# https://github.com/marketplace/actions/checkout
22
22
- name : Check out code
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
with :
25
25
fetch-depth : 0
26
26
27
27
# https://github.com/marketplace/actions/setup-go-environment
28
28
- name : Set up Go ${{ env.GO_VERSION }}
29
- uses : actions/setup-go@v4
29
+ uses : actions/setup-go@v5
30
30
with :
31
31
go-version : ${{ env.GO_VERSION }}
32
32
Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ jobs:
23
23
24
24
# https://github.com/marketplace/actions/checkout
25
25
- name : Checkout code
26
- uses : actions/checkout@v3
26
+ uses : actions/checkout@v4
27
27
28
28
# https://github.com/marketplace/actions/setup-go-environment
29
29
- name : Set up Go ${{ matrix.go-version }}
30
- uses : actions/setup-go@v4
30
+ uses : actions/setup-go@v5
31
31
with :
32
32
go-version : ${{ matrix.go-version }}
33
33
Original file line number Diff line number Diff line change 3
3
4
4
linters-settings :
5
5
govet :
6
- check-shadowing : true
7
6
enable-all : true
8
7
disable :
9
8
- fieldalignment
@@ -47,7 +46,6 @@ linters:
47
46
- nestif
48
47
- gomnd
49
48
- goerr113
50
- # - wrapcheck
51
49
- nlreturn
52
50
- wsl
53
51
- exhaustive
@@ -66,7 +64,7 @@ linters:
66
64
67
65
issues :
68
66
exclude-use-default : false
69
- max-per-linter : 0
67
+ max-issues- per-linter : 0
70
68
max-same-issues : 0
71
69
exclude :
72
70
- ' ST1000: at least one file in a package should have a package comment'
Original file line number Diff line number Diff line change 1
1
module github.com/golangci/revgrep
2
2
3
- go 1.19
3
+ go 1.21
You can’t perform that action at this time.
0 commit comments