From 0c42f9da6ee44df6b9db5320f0baa07d004415f2 Mon Sep 17 00:00:00 2001 From: Tuomo Tanskanen Date: Thu, 10 Oct 2024 14:26:12 +0300 Subject: [PATCH] bump golang to 1.22.8 Bump golang to 1.22.8 Signed-off-by: Tuomo Tanskanen --- Dockerfile | 2 +- Makefile | 2 +- hack/e2e/ensure_go.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index defd6023d2..fb0f8e7525 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Support FROM override -ARG BUILD_IMAGE=docker.io/golang:1.22.7@sha256:192683db8982323952988c7b86c098ee7ecc6cbeb202bf7c113ff9be5358367c +ARG BUILD_IMAGE=docker.io/golang:1.22.8@sha256:b274ff14d8eb9309b61b1a45333bf0559a554ebcf6732fa2012dbed9b01ea56f ARG BASE_IMAGE=gcr.io/distroless/static:nonroot@sha256:9ecc53c269509f63c69a266168e4a687c7eb8c0cfd753bd8bfcaa4f58a90876f # Build the manager binary diff --git a/Makefile b/Makefile index 59342b9ea2..3f6fb3a330 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ RUN_NAMESPACE = metal3 GO_TEST_FLAGS = $(TEST_FLAGS) DEBUG = --debug COVER_PROFILE = cover.out -GO_VERSION ?= 1.22.7 +GO_VERSION ?= 1.22.8 ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) diff --git a/hack/e2e/ensure_go.sh b/hack/e2e/ensure_go.sh index 1801c4a76e..c3818742f8 100755 --- a/hack/e2e/ensure_go.sh +++ b/hack/e2e/ensure_go.sh @@ -2,7 +2,7 @@ set -eux -MINIMUM_GO_VERSION=go1.22.7 +MINIMUM_GO_VERSION=go1.22.8 # Ensure the go tool exists and is a viable version, or installs it verify_go_version()