From 2f516929d7eec1768c7ce3bfe9fcb6f4e9c0cb77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20N=C3=A4gele?= Date: Fri, 13 Dec 2024 10:55:30 +0100 Subject: [PATCH] chore: update Go to 1.23.4 --- Dockerfile | 2 +- Makefile | 2 +- go.mod | 2 +- scripts/go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index fed14f6ab..5b6432026 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Update the base image in Makefile when updating golang version. This has to # be pre-pulled in order to work on GCB. ARG ARCH -FROM golang:1.23.3 as build +FROM golang:1.23.4 as build WORKDIR /go/src/sigs.k8s.io/metrics-server COPY go.mod . diff --git a/Makefile b/Makefile index ae2cd7658..a5884dcd5 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ CONTAINER_ARCH_TARGETS=$(addprefix container-,$(ALL_ARCHITECTURES)) container: # Pull base image explicitly. Keep in sync with Dockerfile, otherwise # GCB builds will start failing. - docker pull golang:1.23.3 + docker pull golang:1.23.4 docker build -t $(REGISTRY)/metrics-server-$(ARCH):$(CHECKSUM) --build-arg ARCH=$(ARCH) --build-arg GIT_TAG=$(GIT_TAG) --build-arg GIT_COMMIT=$(GIT_COMMIT) . .PHONY: container-all diff --git a/go.mod b/go.mod index ece849680..e65483aa3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module sigs.k8s.io/metrics-server -go 1.23.3 +go 1.23.4 require ( github.com/google/go-cmp v0.6.0 diff --git a/scripts/go.mod b/scripts/go.mod index 58e27250d..859d4c4db 100644 --- a/scripts/go.mod +++ b/scripts/go.mod @@ -1,6 +1,6 @@ module sigs.k8s.io/metrics-server/scripts -go 1.23.3 +go 1.23.4 require ( github.com/google/addlicense v1.1.1