From 7dcdf91576c1b488357e79796d2533dff5ca33b1 Mon Sep 17 00:00:00 2001 From: Stefan Haubold Date: Thu, 21 May 2026 11:09:15 +0200 Subject: [PATCH] Bump Go to 1.26.3 across mise + lint workflow - mise.toml: bump the mise-managed Go from 1.26.2 to 1.26.3 so every workflow that uses mise-action picks up the same version. - .github/workflows/lint.yml: switch setup-go from 'stable' (which resolves to 1.26.2 on GitHub-hosted runners, independent of mise) to go-version-file: go.mod. Matches release.yml's existing pattern and makes the lint job auto-track go.mod going forward. Co-Authored-By: Claude Opus 4.7 (1M context) Entire-Checkpoint: d1639db35d40 --- .github/workflows/lint.yml | 4 +++- go.mod | 2 +- mise.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 508b671031..6707b05c2b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,9 @@ jobs: - uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6 with: - go-version: 'stable' + # Track go.mod so future Go bumps don't need a parallel workflow + # edit; release.yml uses the same pattern. + go-version-file: go.mod - uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4 diff --git a/go.mod b/go.mod index 19e2ac4628..00fd0ed8bb 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/entireio/cli -go 1.26.2 +go 1.26.3 require ( charm.land/bubbles/v2 v2.1.0 diff --git a/mise.toml b/mise.toml index ad02f5b22d..8cdfceecc4 100644 --- a/mise.toml +++ b/mise.toml @@ -1,6 +1,6 @@ [tools] # Please also keep the version aligned in the go.mod file -go = { version = '1.26.2', postinstall = "go install github.com/go-delve/delve/cmd/dlv@latest && go install gotest.tools/gotestsum@latest" } +go = { version = '1.26.3', postinstall = "go install github.com/go-delve/delve/cmd/dlv@latest && go install gotest.tools/gotestsum@latest" } golangci-lint = '2.11.3' shellcheck = 'latest' tmux = 'latest'