From ada8fcd115ade95e8f6241c1a46b1daebb7cf2e6 Mon Sep 17 00:00:00 2001 From: killianmuldoon Date: Fri, 13 Oct 2023 13:32:10 +0100 Subject: [PATCH] Bump Go to v1.20.10 Signed-off-by: killianmuldoon --- Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0a04da5474..cfcbbe2299 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ # limitations under the License. # Build the manager binary -ARG GOLANG_VERSION=golang:1.20.8 +ARG GOLANG_VERSION=golang:1.20.10 FROM --platform=${BUILDPLATFORM} ${GOLANG_VERSION} as builder WORKDIR /workspace diff --git a/Makefile b/Makefile index 3d6abc37f2..c584c3ef2e 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ SHELL:=/usr/bin/env bash # # Go. # -GO_VERSION ?= 1.20.8 +GO_VERSION ?= 1.20.10 GO_CONTAINER_IMAGE ?= docker.io/library/golang:$(GO_VERSION) # Use GOPROXY environment variable if set