From d73ab5151dcfa3bf2f04c03ba2c397e968f24e40 Mon Sep 17 00:00:00 2001 From: Christian Schlotter Date: Wed, 2 Aug 2023 17:30:05 +0200 Subject: [PATCH] Bump to Go 1.19.12 --- Makefile | 2 +- Tiltfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 50da775b8744..d74ab59b50e3 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ SHELL:=/usr/bin/env bash # # Go. # -GO_VERSION ?= 1.19.6 +GO_VERSION ?= 1.19.12 GO_CONTAINER_IMAGE ?= docker.io/library/golang:$(GO_VERSION) # Use GOPROXY environment variable if set diff --git a/Tiltfile b/Tiltfile index d0517d3969cb..ba7a388edd4a 100644 --- a/Tiltfile +++ b/Tiltfile @@ -165,7 +165,7 @@ def load_provider_tiltfiles(): tilt_helper_dockerfile_header = """ # Tilt image -FROM golang:1.19.6 as tilt-helper +FROM golang:1.19.12 as tilt-helper # Support live reloading with Tilt RUN go install github.com/go-delve/delve/cmd/dlv@v1.9.1 RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com/tilt-dev/rerun-process-wrapper/master/restart.sh && \ @@ -175,7 +175,7 @@ RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com """ tilt_dockerfile_header = """ -FROM golang:1.19.6 as tilt +FROM golang:1.19.12 as tilt WORKDIR / COPY --from=tilt-helper /process.txt . COPY --from=tilt-helper /start.sh .