From 816bcc6ace4a765bf595e00e9ce073df1a043c92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Sun, 16 Aug 2026 08:46:58 -0700 Subject: [PATCH] chore: float go so local matches continuous integration .mise.toml declared go = "1.25" while every workflow sets go-version: stable. That is a pin on one path and a float on the other, and the two have already diverged: CI builds with 1.26.6, mise supplies 1.25.7. gofumpt output can change between toolchains, so the divergence surfaces as a check failing on a file nobody edited. Nothing bumps .mise.toml, so per the requirement both paths track the latest release rather than one side holding a pin the other never sees. just test passes on 1.26.6. Co-Authored-By: Claude Opus 5 --- .mise.toml | 2 +- go.sum | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.mise.toml b/.mise.toml index 738fa1d27..86c62c675 100644 --- a/.mise.toml +++ b/.mise.toml @@ -1,5 +1,5 @@ [tools] -go = "1.25" +go = "latest" just = "latest" node = "22" bun = "latest" diff --git a/go.sum b/go.sum index 2e60aa558..000fb1558 100644 --- a/go.sum +++ b/go.sum @@ -153,8 +153,6 @@ github.com/bombsimon/wsl/v4 v4.7.0 h1:1Ilm9JBPRczjyUs6hvOPKvd7VL1Q++PL8M0SXBDf+j github.com/bombsimon/wsl/v4 v4.7.0/go.mod h1:uV/+6BkffuzSAVYD+yGyld1AChO7/EuLrCF/8xTiapg= github.com/bombsimon/wsl/v5 v5.8.0 h1:JTkyfs4yl8SPejrCF2GdABXE+mO1WvM7iUYzRWlsxDs= github.com/bombsimon/wsl/v5 v5.8.0/go.mod h1:AbOLsulgkqP4ZnitHf9gwPtCOGlrzkk0jb0uNxRSY0o= -github.com/boumenot/gocover-cobertura v1.4.0 h1:ACJAt5wRi1HU+P9xNDgzWXgLMEVYUWeOgQWZwH+36kU= -github.com/boumenot/gocover-cobertura v1.4.0/go.mod h1:Vme2O66tGa5gNpw5kwB+qzpULOnWSmnAHA5NYAOWFv8= github.com/boumenot/gocover-cobertura v1.5.0 h1:S2eXZ5snlTl+IGLXiM0litlpy9gf8AU8NagMaxX3nZM= github.com/boumenot/gocover-cobertura v1.5.0/go.mod h1:iB1/+oDwfRlsDzABskkid0cNdQ1A+u3O91XUJZWqgtg= github.com/breml/bidichk v0.3.3 h1:WSM67ztRusf1sMoqH6/c4OBCUlRVTKq+CbSeo0R17sE=