From 7b33ab0dcf1cb02c215bf96b75305f0b0d230104 Mon Sep 17 00:00:00 2001 From: Spike Curtis Date: Fri, 8 Nov 2024 13:51:04 +0400 Subject: [PATCH] fix: set dogfood go version to match go.mod (#15446) Updates our dogfood image to use the same go version as `go.mod`. This allows us to skip downloading the new go version on builds. --- dogfood/contents/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dogfood/contents/Dockerfile b/dogfood/contents/Dockerfile index 4d43e2f21e..21a3825427 100644 --- a/dogfood/contents/Dockerfile +++ b/dogfood/contents/Dockerfile @@ -9,7 +9,7 @@ RUN cargo install exa bat ripgrep typos-cli watchexec-cli && \ FROM ubuntu:jammy@sha256:0e5e4a57c2499249aafc3b40fcd541e9a456aab7296681a3994d631587203f97 AS go # Install Go manually, so that we can control the version -ARG GO_VERSION=1.22.5 +ARG GO_VERSION=1.22.8 # Boring Go is needed to build FIPS-compliant binaries. RUN apt-get update && \