File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ jobs:
13
13
14
14
steps :
15
15
- name : Set up Go
16
- uses : actions/setup-go@v2
16
+ uses : actions/setup-go@v5
17
17
with :
18
18
go-version : ${{ matrix.go-version }}
19
19
20
20
- name : Check out code
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v4
22
22
23
23
- name : Get dependencies
24
24
run : go get -v -t -d ./...
@@ -37,12 +37,12 @@ jobs:
37
37
runs-on : ubuntu-latest
38
38
steps :
39
39
- name : Set up Go
40
- uses : actions/setup-go@v2
40
+ uses : actions/setup-go@v5
41
41
with :
42
42
go-version : 1.17.x
43
43
44
44
- name : Check out code
45
- uses : actions/checkout@v2
45
+ uses : actions/checkout@v4
46
46
47
47
- name : golangci-lint
48
48
uses : golangci/golangci-lint-action@v2
@@ -54,18 +54,18 @@ jobs:
54
54
runs-on : ubuntu-latest
55
55
steps :
56
56
- name : Set up Go
57
- uses : actions/setup-go@v2
57
+ uses : actions/setup-go@v5
58
58
with :
59
59
go-version : 1.17.x
60
60
61
61
- name : Check out code
62
- uses : actions/checkout@v2
62
+ uses : actions/checkout@v4
63
63
64
64
- name : Run coverage
65
65
run : go test -coverprofile=coverage.txt -covermode=atomic ./...
66
66
67
67
- name : Upload coverage to Codecov
68
- uses : codecov/codecov-action@v2
68
+ uses : codecov/codecov-action@v5
69
69
with :
70
70
file : ./coverage.txt
71
71
fail_ci_if_error : false
You can’t perform that action at this time.
0 commit comments