From 43f61d0d56e4695d042e0075deb6bbc01f06796e Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Fri, 22 May 2026 22:40:12 -0400 Subject: [PATCH] chore: Disable automated Go version upgrades in Renovate Prevent Renovate from opening PRs to bump the Go toolchain version in go.mod, the golang base image in Dockerfiles, or go-version in GitHub Actions setup-go steps. Co-Authored-By: Claude Sonnet 4.6 --- renovate.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/renovate.json b/renovate.json index 8ef415c..79234d5 100644 --- a/renovate.json +++ b/renovate.json @@ -9,6 +9,24 @@ "timezone": "EST", "labels": ["dependencies"], "packageRules": [ + { + "description": "Disable Go version upgrades in go.mod (go directive and toolchain directive)", + "matchManagers": ["gomod"], + "matchDepNames": ["go"], + "enabled": false + }, + { + "description": "Disable golang Docker image version upgrades", + "matchManagers": ["dockerfile"], + "matchDepNames": ["golang"], + "enabled": false + }, + { + "description": "Disable go-version upgrades in GitHub Actions (actions/setup-go)", + "matchManagers": ["github-actions"], + "matchPackageNames": ["actions/go-versions"], + "enabled": false + }, { "description": "Group all Go dependencies", "matchManagers": ["gomod"],