name: Update Supported Go Versions description: Update gosec to the latest patch versions of the two latest supported Go major versions using go.dev release data.
Update supported Go versions across the repository
Use this skill when you want to bump repository Go versions to the newest patch releases of the latest two supported Go major versions.
Reference source for versions:
Required behavior
- Fetch and parse the release page.
- Detect the latest two Go major.minor series and their latest patch versions.
- Example shape: latest series
1.26.xand previous series1.25.x.
- Example shape: latest series
- Derive:
latest_patch(for newest series, full patch string, e.g.1.26.3)previous_patch(for second newest series, full patch string, e.g.1.25.9)latest_minor(e.g.1.26)previous_minor(e.g.1.25)
- Apply updates carefully across all relevant files.
Version update rules
Use repository-wide search and update all applicable occurrences, including but not limited to:
- GitHub Actions workflow
go-versionvalues:- Matrix entries for supported versions must include exactly the two patch versions:
previous_patchlatest_patch
- Single-version setup-go steps should use
latest_patch.
- Matrix entries for supported versions must include exactly the two patch versions:
- Build argument and build tool defaults:
GO_VERSION=<major.minor>style values should uselatest_minor.
- Module/toolchain minimum version markers:
go.modgodirective should be set toprevious_minor.0.- Embedded temporary
go.modcontents in tests/benchmarks should useprevious_minor(without patch) unless file style requires otherwise.
- Documentation and skill/prompt metadata that state supported versions:
- Update text to match the new supported pair (
previous_minorandlatest_minor). - Update "requires Go X or newer" style statements to
previous_minor.
- Update text to match the new supported pair (
Discovery checklist (must run)
Search the full repository for version markers and review each hit:
go-version:setup-goGO_VERSIONgolang:^go [0-9]+\.[0-9]+(\.[0-9]+)?$Go 1.1\.[0-9]+\.[0-9]+
Do not change unrelated historical references unless they represent active supported-version policy.
Validation
- Confirm all intended files were updated and no obvious supported-version location was missed.
- Run targeted checks:
go test ./...
- Re-run search to ensure old supported pair is removed from active config/docs.
Git and PR workflow
- Create branch:
chore/update-go-versions-<latest_minor> - Commit message:
chore(go): update supported Go versions to <previous_patch> and <latest_patch> - Push branch.
- Open PR to
masterwith:- Title:
chore(go): update supported Go versions to <previous_patch> and <latest_patch> - Body summary listing key files changed and source link to go.dev release page.
- Title:
Output requirements
- Report detected versions (
previous_patch,latest_patch,previous_minor,latest_minor). - List all updated files grouped by category (workflows, build config, module/tests, docs/metadata).
- Report test command result.
- Report branch name, commit SHA, PR title, and PR URL.