From 492e9329686039c8d0fea30c459887c5b1c25b69 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Fri, 22 May 2026 23:14:11 -0400 Subject: [PATCH] chore: constrain Renovate to Go 1.24 to block transitive toolchain bumps The existing rule disabling direct `go` directive updates didn't prevent dep updates from bumping the `go` directive as a side effect of go mod tidy resolving a transitive minimum version. Setting constraints.go tells Renovate to skip any module update whose new version requires Go > 1.24. Co-Authored-By: Claude Sonnet 4.6 --- renovate.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/renovate.json b/renovate.json index 79234d5..da5bec5 100644 --- a/renovate.json +++ b/renovate.json @@ -79,6 +79,9 @@ "labels": ["security"], "schedule": ["at any time"] }, + "constraints": { + "go": "1.24" + }, "prConcurrentLimit": 5, "prHourlyLimit": 2 }