From a4fe7919d8525ab34d122752864895bd8bf371b8 Mon Sep 17 00:00:00 2001 From: Matthew Booth Date: Mon, 28 Oct 2024 22:10:42 +0000 Subject: [PATCH] release-0.10: Pin GOTOOLCHAIN to go1.22.8 This fixes linting issues in the release-0.10 branch, which only manifest when the toolchain is bumped to 1.23, as in the current default kubekins-e2e image used in prow jobs. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index a0cf8ea518..479e71c9d6 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,8 @@ include $(ROOT_DIR_RELATIVE)/common.mk # If you update this file, please follow # https://www.thapaliya.com/en/writings/well-documented-makefiles/ +export GOTOOLCHAIN=go1.22.8 + # Active module mode, as we use go modules to manage dependencies export GO111MODULE=on unexport GOPATH