From b381f3a7b691d66b7acbc6db23cf1b2cf167beae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20R=C3=BCger?= Date: Tue, 5 Sep 2023 21:11:27 +0200 Subject: [PATCH] Makefile: Sync golang version with Dockerfile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ba12c7509..8a6b853e0b 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.19.8 + docker pull golang:1.20.5 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