From 1b285f52e387517b488fbc150fb92e222d9c3fd5 Mon Sep 17 00:00:00 2001 From: meredith <4412188+mariduv@users.noreply.github.com> Date: Tue, 2 Jun 2026 11:56:19 -0500 Subject: [PATCH] Add GOPRIVATE to renovate-config.json This makes sure any go module in our org is fetched direct rather than through the public module proxy. --- renovate-config.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/renovate-config.json b/renovate-config.json index 8607fb4..98b7a10 100644 --- a/renovate-config.json +++ b/renovate-config.json @@ -31,5 +31,8 @@ "matchManagers": ["github-actions"], "groupName": "github-actions" } - ] + ], + "customEnvVariables": { + "GOPRIVATE": "github.com/trufflesecurity/*" + } }