From 3098d0e198697573ea81d409cf138651de7a4c3c Mon Sep 17 00:00:00 2001 From: Tom Wieczorek Date: Mon, 11 Nov 2024 11:04:38 +0100 Subject: [PATCH] Bump Go to v1.23.3 https://groups.google.com/g/golang-announce/c/X5KodEJYuqI/m/FvUwAwxvCAAJ https://go.dev/doc/devel/release#go1.23.3 https://github.com/golang/go/issues?q=milestone%3AGo1.23.3+label%3ACherryPickApproved Signed-off-by: Tom Wieczorek --- build/Dockerfile | 2 +- embedded-bins/Makefile.variables | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index d44e391d4b8e..47064aed7c2e 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -4,7 +4,7 @@ FROM $BUILDIMAGE ARG TARGETARCH RUN set -ex; \ # Need to use the gold linker on ARM, Go really wants to have it. -# https://github.com/golang/go/blob/go1.23.2/src/cmd/link/internal/ld/lib.go##L1661-L1680 +# https://github.com/golang/go/blob/go1.23.3/src/cmd/link/internal/ld/lib.go##L1661-L1680 case "$TARGETARCH" in \ arm*) binutils=binutils-gold ;; \ *) binutils=binutils ;; \ diff --git a/embedded-bins/Makefile.variables b/embedded-bins/Makefile.variables index 08b4af22b00b..3b5daadb0ccd 100644 --- a/embedded-bins/Makefile.variables +++ b/embedded-bins/Makefile.variables @@ -1,7 +1,7 @@ alpine_version = 3.20 alpine_patch_version = $(alpine_version).1 golang_buildimage=docker.io/library/golang:$(go_version)-alpine$(alpine_version) -go_version = 1.23.2 +go_version = 1.23.3 runc_version = 1.2.1 runc_buildimage = $(golang_buildimage)