fix: align toolchain versions and remove disabled/duplicate CI files#32
Merged
Conversation
- 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.
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Production-readiness fixes for the
tracerepo: align toolchain versions and remove disabled/duplicate CI files.Changes
1.26.1->1.26.4to matchgo.mod/CI.ci.ymlandmise.toml; pinned gofumptv0.10.0(was@latest).license-check.yml-> referenced a non-existent shared workflow.lint.yml-> redundant withci.yml..github/CODEOWNERS(kept the richer rootCODEOWNERS).Verification
go build/go vet/go testpass.gofumptclean.golangci-lintreports 0 issues.