Skip to content

Commit 9b64e0b

Browse files
authored
fix: align toolchain versions and remove disabled/duplicate CI files (#32)
* fix: align toolchain versions and remove disabled/duplicate CI files - mise.toml: bumped go 1.26.1 -> 1.26.4 to match go.mod/CI. - CI: aligned golangci-lint version between ci.yml and mise.toml; pinned gofumpt v0.10.0 (was @latest). - Removed two permanently-disabled workflow stubs (license-check.yml -> non-existent shared workflow; lint.yml -> redundant with ci.yml). - Removed duplicate .github/CODEOWNERS (kept the richer root CODEOWNERS). Verified: go build/vet/test pass; gofumpt clean; golangci-lint 0 issues. * fix: restore code owners * fix: remove duplicate .github/CODEOWNERS so root CODEOWNERS governs The .github/CODEOWNERS (`* @GrayCodeAI/cli-maintainers`) took GitHub precedence over the richer root CODEOWNERS, shadowing the per-directory ownership (security-team for /redact/, devops-team for CI/build, etc.). Removing it restores the intended ownership policy.
1 parent f7a50ea commit 9b64e0b

5 files changed

Lines changed: 3 additions & 57 deletions

File tree

.github/CODEOWNERS

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
cache: true
5050
- name: gofumpt diff
5151
run: |
52-
go install mvdan.cc/gofumpt@latest
52+
go install mvdan.cc/gofumpt@v0.10.0
5353
out=$(gofumpt -l .)
5454
if [ -n "$out" ]; then
5555
echo "::error::gofumpt would reformat the following files:"
@@ -73,7 +73,7 @@ jobs:
7373
cache: true
7474
- uses: golangci/golangci-lint-action@v7
7575
with:
76-
version: v2.1.0
76+
version: v2.11.3
7777
install-mode: goinstall
7878
verify: false
7979
args: --timeout=5m

.github/workflows/license-check.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/lint.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tools]
22
# Please also keep the version aligned in the go.mod file
3-
go = { version = '1.26.1', postinstall = "go install github.com/go-delve/delve/cmd/dlv@latest && go install gotest.tools/gotestsum@latest" }
3+
go = { version = '1.26.4', postinstall = "go install github.com/go-delve/delve/cmd/dlv@latest && go install gotest.tools/gotestsum@latest" }
44
golangci-lint = '2.11.3'
55
shellcheck = 'latest'
66
tmux = 'latest'

0 commit comments

Comments
 (0)