From 984ac95b92e0d63b4d11da2e11a65d0c4b095007 Mon Sep 17 00:00:00 2001 From: Furkat Gofurov Date: Wed, 8 Nov 2023 10:35:50 +0200 Subject: [PATCH] Bump Go version to v1.20.11 Signed-off-by: Furkat Gofurov --- Makefile | 2 +- Tiltfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index fbb7da22ae0e..05a736541de5 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ SHELL:=/usr/bin/env bash # # Go. # -GO_VERSION ?= 1.20.10 +GO_VERSION ?= 1.20.11 GO_CONTAINER_IMAGE ?= docker.io/library/golang:$(GO_VERSION) # Use GOPROXY environment variable if set diff --git a/Tiltfile b/Tiltfile index eac8b1a215d2..e382429aaaef 100644 --- a/Tiltfile +++ b/Tiltfile @@ -165,7 +165,7 @@ def load_provider_tiltfiles(): tilt_helper_dockerfile_header = """ # Tilt image -FROM golang:1.20.10 as tilt-helper +FROM golang:1.20.11 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.13 as tilt +FROM golang:1.20.11 as tilt WORKDIR / COPY --from=tilt-helper /process.txt . COPY --from=tilt-helper /start.sh .