Skip to content

Commit 504a22e

Browse files
authored
Merge pull request #9057 from sbueringer/pr-bump-to-go.20.6
🌱 Bump to Go 1.20.6
2 parents 8de61c1 + 458d0f5 commit 504a22e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SHELL:=/usr/bin/env bash
2323
#
2424
# Go.
2525
#
26-
GO_VERSION ?= 1.20.4
26+
GO_VERSION ?= 1.20.6
2727
GO_CONTAINER_IMAGE ?= docker.io/library/golang:$(GO_VERSION)
2828

2929
# Use GOPROXY environment variable if set

Tiltfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def load_provider_tiltfiles():
184184

185185
tilt_helper_dockerfile_header = """
186186
# Tilt image
187-
FROM golang:1.20.4 as tilt-helper
187+
FROM golang:1.20.6 as tilt-helper
188188
# Install delve. Note this should be kept in step with the Go release minor version.
189189
RUN go install github.com/go-delve/delve/cmd/[email protected]
190190
# Support live reloading with Tilt

hack/ensure-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ EOF
3838
local go_version
3939
IFS=" " read -ra go_version <<< "$(go version)"
4040
local minimum_go_version
41-
minimum_go_version=go1.20.4
41+
minimum_go_version=go1.20
4242
if [[ "${minimum_go_version}" != $(echo -e "${minimum_go_version}\n${go_version[2]}" | sort -s -t. -k 1,1 -k 2,2n -k 3,3n | head -n1) && "${go_version[2]}" != "devel" ]]; then
4343
cat <<EOF
4444
Detected go version: ${go_version[*]}.

0 commit comments

Comments
 (0)