Skip to content

Commit d706132

Browse files
authored
Update to Go 1.16 (#305)
1 parent 576326e commit d706132

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.buildkite/Dockerfile-ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.13-stretch
1+
FROM golang:1.16-stretch
22

33
RUN mkdir /helm && \
44
cd /helm && \

.buildkite/pipeline-test-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ steps:
33
command: make clean test-e2e
44
env:
55
CGO_ENABLED: 0
6-
GIMME_GO_VERSION: 1.13.x
6+
GIMME_GO_VERSION: 1.16.x
77
plugins:
88
gopath-checkout#v1.0.1:
99
import: github.com/m3db/m3db-operator

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# stage 1: build
2-
FROM golang:1.13-alpine AS builder
2+
FROM golang:1.16-alpine AS builder
33
LABEL maintainer="The m3db-operator Authors <[email protected]>"
44

55
# Install CA certs for curl
@@ -15,8 +15,8 @@ ADD . /go/src/github.com/m3db/m3db-operator
1515

1616
# Build m3dbnode binary
1717
RUN cd /go/src/github.com/m3db/m3db-operator/ && \
18-
git submodule update --init && \
19-
make m3db-operator
18+
git submodule update --init && \
19+
make m3db-operator
2020

2121
# stage 2: lightweight "release"
2222
FROM alpine:latest

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/m3db/m3db-operator
22

3-
go 1.13
3+
go 1.16
44

55
require (
66
github.com/ant31/crd-validation v0.0.0-20180801212718-38f6a293f140

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,6 @@ github.com/fatih/color v1.10.0 h1:s36xzo75JdqLaaWoiEHk767eHiwo0598uUxyfiPkDsg=
243243
github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM=
244244
github.com/fatih/structtag v1.2.0 h1:/OdNE99OxoI/PqaW/SuSK9uxxT3f/tcSZgon/ssNSx4=
245245
github.com/fatih/structtag v1.2.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4/aAZl94=
246-
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ=
247246
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc=
248247
github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k=
249248
github.com/fortytw2/leaktest v1.2.1-0.20180901000122-b433bbd6d743/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g=

0 commit comments

Comments
 (0)