Skip to content

Commit

Permalink
Bump golang to 1.16.0 (#3386)
Browse files Browse the repository at this point in the history
Release notes: https://golang.org/doc/go1.16

Signed-off-by: Sunjay Bhatia <sunjayb@vmware.com>
  • Loading branch information
sunjayBhatia authored Feb 26, 2021
1 parent a9a12d9 commit df97829
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/prbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.15.8'
go-version: '1.16.0'
- name: test
run: |
make install
Expand All @@ -50,7 +50,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.15.8'
go-version: '1.16.0'
- name: test
run: |
make install
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.15.8'
go-version: '1.16.0'
- name: generate
run: |
make generate lint-yamllint lint-flags
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This section describes how to build Contour from source.

1. *Install Go*

Contour requires [Go 1.15][1] or later.
Contour requires [Go 1.16][1] or later.
We also assume that you're familiar with Go's [`GOPATH` workspace][3] convention, and have the appropriate environment variables set.

### Fetch the source
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BUILDPLATFORM=linux/amd64

FROM --platform=$BUILDPLATFORM golang:1.15.8 AS build
FROM --platform=$BUILDPLATFORM golang:1.16.0 AS build
WORKDIR /contour

ENV GOPROXY=https://proxy.golang.org
Expand Down

0 comments on commit df97829

Please sign in to comment.