diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7ac22236..19266d35f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.15 + go-version: ^1.16 id: go - name: Check out code into the Go module directory diff --git a/Dockerfile b/Dockerfile index 27715b433..dd9e80552 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ # builder image ARG ARCH -FROM golang:1.15 as builder +FROM golang:1.16 as builder ARG ARCH WORKDIR /sigs.k8s.io/external-dns diff --git a/Dockerfile.mini b/Dockerfile.mini index 1f7633006..d3b02877f 100644 --- a/Dockerfile.mini +++ b/Dockerfile.mini @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.15 as builder +FROM golang:1.16 as builder WORKDIR /sigs.k8s.io/external-dns diff --git a/docs/contributing/getting-started.md b/docs/contributing/getting-started.md index 37b2dc4a3..9a51861b4 100644 --- a/docs/contributing/getting-started.md +++ b/docs/contributing/getting-started.md @@ -1,7 +1,7 @@ # Quick Start - [Git](https://git-scm.com/downloads) -- [Go 1.15+](https://golang.org/dl/) +- [Go 1.16+](https://golang.org/dl/) - [Go modules](https://github.com/golang/go/wiki/Modules) - [golangci-lint](https://github.com/golangci/golangci-lint) - [Docker](https://docs.docker.com/install/) diff --git a/go.mod b/go.mod index feff79fa2..28644e915 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module sigs.k8s.io/external-dns -go 1.15 +go 1.16 require ( cloud.google.com/go v0.50.0