From c23356e8ab52678475bcd438af5e0b0d126e7efe Mon Sep 17 00:00:00 2001 From: Stefan Bueringer Date: Mon, 13 Nov 2023 14:54:34 +0100 Subject: [PATCH] Bump to Go 1.20.11 --- Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cfcbbe2299..820928d78f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ # limitations under the License. # Build the manager binary -ARG GOLANG_VERSION=golang:1.20.10 +ARG GOLANG_VERSION=golang:1.20.11 FROM --platform=${BUILDPLATFORM} ${GOLANG_VERSION} as builder WORKDIR /workspace diff --git a/Makefile b/Makefile index 1f7c7904d3..8adf401c19 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ SHELL:=/usr/bin/env bash # # Go. # -GO_VERSION ?= 1.20.10 +GO_VERSION ?= 1.20.11 GO_CONTAINER_IMAGE ?= docker.io/library/golang:$(GO_VERSION) # Use GOPROXY environment variable if set