From 811097ef037292259c086fe05427da2623267ea0 Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Wed, 26 Mar 2025 10:32:43 +0000 Subject: [PATCH] chore(dogfood): update dogfood Go version to 1.24.1 (#17104) https://github.com/coder/coder/pull/17035 updated the Go version in `go.mod` and in GH actions but not in `dogfood/coder/Dockerfile` or `flake.nix`. This updates the Go version to 1.24 in `dogfood/coder/Dockerfile`. Unfortunately at the time of writing, Go 1.24 is not available in NixOS. So that will have to wait. --- dogfood/coder/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dogfood/coder/Dockerfile b/dogfood/coder/Dockerfile index 6e42e9dc23..82be7bbf13 100644 --- a/dogfood/coder/Dockerfile +++ b/dogfood/coder/Dockerfile @@ -9,7 +9,7 @@ RUN cargo install 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.12 +ARG GO_VERSION=1.24.1 # Boring Go is needed to build FIPS-compliant binaries. RUN apt-get update && \