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'