File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v3
17
17
18
18
- name : Setup Go
19
- uses : actions/setup-go@v2
19
+ uses : actions/setup-go@v4
20
20
with :
21
- go-version : ' ^1.19.4 '
21
+ go-version : ' ^1.20.2 '
22
22
23
23
- name : Install dependencies
24
24
run : make deps
Original file line number Diff line number Diff line change @@ -44,12 +44,12 @@ install:
44
44
lint :
45
45
@if ! command -v golangci-lint > /dev/null 2>&1 ; then \
46
46
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | \
47
- sh -s -- -b " $$ (go env GOPATH)/bin" v1.50.1 ; \
47
+ sh -s -- -b " $$ (go env GOPATH)/bin" v1.51.2 ; \
48
48
fi
49
49
golangci-lint run ./...
50
50
51
51
test :
52
- @go clean -testcache ./...
52
+ @go clean -testcache
53
53
CGO_ENABLED=1 go test -race ./...
54
54
55
55
ci : lint test
You can’t perform that action at this time.
0 commit comments