Skip to content

Commit cc09a44

Browse files
authored
Merge pull request linkedin#690 from linkedin/go116
Update Golang to version 1.16
2 parents 0a7248f + 775d688 commit cc09a44

File tree

5 files changed

+17
-67
lines changed

5 files changed

+17
-67
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
go-version: [1.15.x]
12+
go-version: [1.16.x]
1313
platform: [ubuntu-latest]
1414

1515
steps:
@@ -28,7 +28,7 @@ jobs:
2828
${{ runner.os }}-go-
2929
3030
- 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
3232

3333
- name: Run test suite
3434
run: make test

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Go
1919
uses: actions/setup-go@v2
2020
with:
21-
go-version: 1.15.x
21+
go-version: 1.16.x
2222

2323
- uses: actions/cache@v2
2424
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# stage 1: builder
2-
FROM golang:1.15.8-alpine as builder
2+
FROM golang:1.16-alpine as builder
33

44
ENV BURROW_SRC /usr/src/Burrow/
55

go.mod

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ require (
1414
github.com/pelletier/go-toml v1.8.1 // indirect
1515
github.com/pkg/errors v0.9.1
1616
github.com/prometheus/client_golang v1.9.0
17+
github.com/prometheus/common v0.17.0 // indirect
1718
github.com/prometheus/procfs v0.6.0 // indirect
1819
github.com/samuel/go-zookeeper v0.0.0-20201211165307-7117e9ea2414
1920
github.com/smartystreets/assertions v1.2.0 // indirect
@@ -27,8 +28,11 @@ require (
2728
github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c
2829
go.uber.org/multierr v1.6.0 // indirect
2930
go.uber.org/zap v1.16.0
31+
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 // indirect
3032
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect
3133
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
3236
google.golang.org/protobuf v1.25.0 // indirect
3337
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
3438
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
@@ -38,4 +42,4 @@ require (
3842
honnef.co/go/tools v0.1.1 // indirect
3943
)
4044

41-
go 1.15
45+
go 1.16

0 commit comments

Comments
 (0)