chore(renovate): move config to .github/ and fix Go version blocking#93
Merged
Conversation
- Move renovate.json to .github/renovate.json (standard location) - Replace deprecated config:base with config:recommended - Fix Go version blocking: replace three broken/incomplete rules with a single matchDatasources: golang-version rule that correctly covers the go directive, toolchain directive, and setup-go go-version inputs (the old GHA rule matched actions/go-versions which is not a valid package name for this purpose; toolchain directive was also unblocked) - Fix timezone from EST (not a valid IANA tz) to America/New_York - Add matchManagers: gomod to k8s core rule to prevent cross-manager matches - Add Docker images group rule to avoid per-image PRs for lab containers Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
scotwells
approved these changes
May 23, 2026
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
renovate.jsonto.github/renovate.json(the standard location GitHub and Renovate prefer)config:basetoconfig:recommendedmatchDatasources: golang-versionruleESTtimezone toAmerica/New_YorkmatchManagers: gomodto k8s core ruleDetails
Go version blocking was broken in two ways:
matchPackageNames: ["actions/go-versions"]— this is not the correct identifier. Renovate tracks thego-versioninput ofactions/setup-gounder datasourcegolang-versionwith depNamego. The old rule was silently a no-op.gomodrule only blocked thegodirective, not thetoolchaindirective (a separate dep).The new single rule
matchDatasources: ["golang-version"]covers all three cases: go.modgodirective, go.modtoolchaindirective, andsetup-gogo-versioninputs.Test plan
.github/renovate.jsonon next run🤖 Generated with Claude Code