File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 34
34
steps :
35
35
-
36
36
name : Checkout
37
- uses : actions/checkout@v3
37
+ uses : actions/checkout@v4
38
38
with :
39
39
fetch-depth : 2
40
40
-
Original file line number Diff line number Diff line change 17
17
18
18
steps :
19
19
- name : Checkout code
20
- uses : actions/checkout@v3
20
+ uses : actions/checkout@v4
21
21
22
22
- name : Run FOSSA scan and upload build data
23
23
uses : fossa-contrib/fossa-action@v2
Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ jobs:
17
17
build :
18
18
strategy :
19
19
matrix :
20
- go-version : [1.20 .x, 1.21 .x]
20
+ go-version : [1.21 .x, 1.22 .x]
21
21
os : [ubuntu-latest, windows-latest, macos-latest]
22
22
runs-on : ${{ matrix.os }}
23
23
timeout-minutes : 10
24
24
steps :
25
- - uses : actions/checkout@v3
25
+ - uses : actions/checkout@v4
26
26
27
27
- name : Set up Go
28
- uses : actions/setup-go@v4
28
+ uses : actions/setup-go@v5
29
29
with :
30
30
go-version : ${{ matrix.go-version }}
31
31
@@ -34,16 +34,16 @@ jobs:
34
34
make build
35
35
36
36
- name : lint
37
- uses : golangci/golangci-lint-action@v3
37
+ uses : golangci/golangci-lint-action@v6
38
38
with :
39
- version : v1.53
39
+ version : v1.59
40
40
args : --print-resources-usage --timeout=10m --verbose
41
41
42
42
- name : Test
43
43
run : |
44
44
make coverage
45
45
46
46
- name : Codecov
47
- uses : codecov/codecov-action@v3
47
+ uses : codecov/codecov-action@v4
48
48
with :
49
49
directory : ./
Original file line number Diff line number Diff line change 8
8
// that targets ParseNormalizedNamed
9
9
// nolint:deadcode
10
10
func FuzzParseNormalizedNamed (f * testing.F ) {
11
- f .Fuzz (func (t * testing.T , data string ) {
11
+ f .Fuzz (func (_ * testing.T , data string ) {
12
12
_ , _ = ParseNormalizedNamed (data )
13
13
})
14
14
}
You can’t perform that action at this time.
0 commit comments