From 7bca9bdde804ab8aeacbdd6ad1f1f7b5583a4395 Mon Sep 17 00:00:00 2001 From: Brent Date: Mon, 24 Aug 2026 20:30:14 -0400 Subject: [PATCH] chore(ci): bump Go toolchain to 1.26 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The toolchain version lives only in mise.toml since the mise migration, so this is a one-line change. Deliberately NOT touching the `go` directive in go.mod — that declares the minimum language version for consumers of the published module, and raising it would break them. Verified: go build/vet/test and gofmt all pass on 1.26. Co-Authored-By: Claude Opus 5 (1M context) --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index c937323..6be182e 100644 --- a/mise.toml +++ b/mise.toml @@ -12,5 +12,5 @@ [tools] node = "24.14.0" # ships npm 11.9.0 — required (>=11.5.1) for npm OIDC trusted publishing python = "3.13" -go = "1.23" +go = "1.26" uv = "latest"