File tree Expand file tree Collapse file tree 5 files changed +17
-67
lines changed Expand file tree Collapse file tree 5 files changed +17
-67
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
fail-fast : false
11
11
matrix :
12
- go-version : [1.15 .x]
12
+ go-version : [1.16 .x]
13
13
platform : [ubuntu-latest]
14
14
15
15
steps :
28
28
${{ runner.os }}-go-
29
29
30
30
- name : Install dependencies
31
- run : curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.36.0
31
+ run : curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.37.1
32
32
33
33
- name : Run test suite
34
34
run : make test
Original file line number Diff line number Diff line change 18
18
- name : Setup Go
19
19
uses : actions/setup-go@v2
20
20
with :
21
- go-version : 1.15 .x
21
+ go-version : 1.16 .x
22
22
23
23
- uses : actions/cache@v2
24
24
with :
Original file line number Diff line number Diff line change 1
1
# stage 1: builder
2
- FROM golang:1.15.8 -alpine as builder
2
+ FROM golang:1.16 -alpine as builder
3
3
4
4
ENV BURROW_SRC /usr/src/Burrow/
5
5
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ require (
14
14
github.com/pelletier/go-toml v1.8.1 // indirect
15
15
github.com/pkg/errors v0.9.1
16
16
github.com/prometheus/client_golang v1.9.0
17
+ github.com/prometheus/common v0.17.0 // indirect
17
18
github.com/prometheus/procfs v0.6.0 // indirect
18
19
github.com/samuel/go-zookeeper v0.0.0-20201211165307-7117e9ea2414
19
20
github.com/smartystreets/assertions v1.2.0 // indirect
@@ -27,8 +28,11 @@ require (
27
28
github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c
28
29
go.uber.org/multierr v1.6.0 // indirect
29
30
go.uber.org/zap v1.16.0
31
+ golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 // indirect
30
32
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect
31
33
golang.org/x/mod v0.4.1 // indirect
34
+ golang.org/x/net v0.0.0-20210222171744-9060382bd457 // indirect
35
+ golang.org/x/sys v0.0.0-20210223212115-eede4237b368 // indirect
32
36
google.golang.org/protobuf v1.25.0 // indirect
33
37
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
34
38
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
@@ -38,4 +42,4 @@ require (
38
42
honnef.co/go/tools v0.1.1 // indirect
39
43
)
40
44
41
- go 1.15
45
+ go 1.16
You can’t perform that action at this time.
0 commit comments