From 15ac61823979efaa479de80d3f2604e494cf940f Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Sat, 9 Nov 2024 22:23:51 -0500 Subject: [PATCH] Upgrade to go 1.23.3 (#605) --- .circleci/config.yml | 2 +- Dockerfile | 2 +- flake.nix | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7757f7d4..ce86ab37 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,7 @@ executors: - image: cimg/base:stable go: docker: - - image: cimg/go:1.23.2 + - image: cimg/go:1.23.3 jobs: check_whitespace: executor: base diff --git a/Dockerfile b/Dockerfile index d05f5453..2b5b2110 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.2 AS builder +FROM golang:1.23.3 AS builder ARG TARGETPLATFORM ARG PS_VERSION diff --git a/flake.nix b/flake.nix index 1d6dbf5d..f3e0e858 100644 --- a/flake.nix +++ b/flake.nix @@ -5,6 +5,9 @@ flake-utils.url = "github:numtide/flake-utils"; # 1.23.2 release + # We temporarily mismatch the version in Docker (1.23.3) because Nix doesn't + # have the latest version yet, but we need to fix: + # https://github.com/golang/go/issues/68976 go-nixpkgs.url = "github:NixOS/nixpkgs/4ae2e647537bcdbb82265469442713d066675275"; # 3.44.2 release