File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
name : Check
7
7
strategy :
8
8
matrix :
9
- go-version : [1.18 .x, 1.19 .x, 1.20.x, 1.21 .x]
9
+ go-version : [1.22 .x, 1.23 .x, 1.24 .x]
10
10
os : [ubuntu-latest]
11
11
runs-on : ${{ matrix.os }}
12
12
steps :
13
13
- name : Set up Go
14
- uses : actions/setup-go@v4
14
+ uses : actions/setup-go@v5
15
15
with :
16
16
go-version : ${{ matrix.go-version }}
17
17
- name : check out
18
18
uses : actions/checkout@v4
19
19
- name : install tools
20
20
run : " go install golang.org/x/tools/cmd/goimports@latest"
21
21
- name : golangci-lint
22
- uses : golangci/golangci-lint-action@v3
22
+ uses : golangci/golangci-lint-action@v7
23
23
with :
24
24
version : latest
25
25
args : --timeout=5m
26
26
- name : check
27
27
run : make ci-check
28
28
- name : upload coverage
29
- uses : codecov/codecov-action@v3
29
+ uses : codecov/codecov-action@v5
30
30
with :
31
31
token : ${{ secrets.CODECOV_TOKEN }}
32
32
You can’t perform that action at this time.
0 commit comments