From 63177cbf79397a7a89b0cf9d9ccf811d8a70c94f Mon Sep 17 00:00:00 2001 From: codebien <2103732+codebien@users.noreply.github.com> Date: Thu, 25 Sep 2025 10:47:26 +0200 Subject: [PATCH 1/2] renovate: Exclude gomod indirect deps --- renovate.json | 1 + 1 file changed, 1 insertion(+) diff --git a/renovate.json b/renovate.json index c70111d2e8..9ae315761a 100644 --- a/renovate.json +++ b/renovate.json @@ -21,6 +21,7 @@ "gomod" ], "enabled": true, + "ignoreDeps": ["indirect"], "postUpdateOptions": [ "gomodTidy", "gomodUpdateImportPaths" From 1a5be25d0160f5736da4accc4299626e546ee902 Mon Sep 17 00:00:00 2001 From: codebien <2103732+codebien@users.noreply.github.com> Date: Tue, 14 Oct 2025 15:53:35 +0200 Subject: [PATCH 2/2] renovate: Do not update go.mod indirects --- renovate.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 9ae315761a..b4290d1fb1 100644 --- a/renovate.json +++ b/renovate.json @@ -21,12 +21,17 @@ "gomod" ], "enabled": true, - "ignoreDeps": ["indirect"], "postUpdateOptions": [ "gomodTidy", "gomodUpdateImportPaths" ] }, + { + "description": "Do not update indirect dependencies", + "matchManagers": ["gomod"], + "matchDepTypes": ["indirect"], + "enabled": false + }, { "description": "Update Go versions only when a patch version exists (z > 0 in v1.x.z)", "matchManagers": [