From 1d2fbd5155334e5b179d106835a27505050ede12 Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Sun, 23 Feb 2025 18:38:23 +0000 Subject: [PATCH] chore: update go version in devcontainer Since `gh` uses Go 1.23, the devcontainer needs to be updated to allow building `gh` in a fresh codespace. --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 20bf83882..bc047d1c5 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "image": "mcr.microsoft.com/devcontainers/go:1.22", + "image": "mcr.microsoft.com/devcontainers/go:1.23", "features": { "ghcr.io/devcontainers/features/sshd:1": {} },