From 0e10d26cbdcf4334cdb98921f8dd570b8c5c197e Mon Sep 17 00:00:00 2001 From: Dhruv Thakur <13575379+dhth@users.noreply.github.com> Date: Wed, 26 Aug 2026 00:49:14 +0200 Subject: [PATCH] make go version explicit in mise.toml mise is deprecating deriving the tool version from the go directive because it only declares the minimum compatible version: Pin the current Go version in mise.toml so builds continue using the intended toolchain after this behavior is removed in mise 2026.11.0. --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index a16aff3..d305149 100644 --- a/mise.toml +++ b/mise.toml @@ -1,10 +1,10 @@ [settings] -idiomatic_version_file_enable_tools = ["go"] task.run_auto_install = false [tools] actionlint = "1.7.12" cosign = "2.5.0" +go = "1.26.6" "go:golang.org/x/vuln/cmd/govulncheck" = "latest" gofumpt = "0.11.0" golangci-lint = "2.12.2"