From c5397c78e68a9f82533c36fb50a797d41c7d7152 Mon Sep 17 00:00:00 2001 From: wpessers Date: Thu, 20 Aug 2026 22:31:23 +0200 Subject: [PATCH 1/3] fix(renovate): remove gitIgnoredAuthors to avoid infinite loop --- .github/renovate.json5 | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 4b00060e16..7596c9564e 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -5,13 +5,6 @@ 'helpers:pinGitHubActionDigestsToSemver', ':separateMultipleMajorReleases', ], - gitIgnoredAuthors: [ - "107717825+opentelemetrybot@users.noreply.github.com", - "107717825+opentelemetrybot[bot]@users.noreply.github.com", - "197425009+otelbot@users.noreply.github.com", - "197425009+otelbot[bot]@users.noreply.github.com", - "github-actions[bot]@users.noreply.github.com" - ], prHourlyLimit: 15, prConcurrentLimit: 15, ignorePaths: [ From 267ec6616d0eaae848fa1f9c54b4366624d50339 Mon Sep 17 00:00:00 2001 From: wpessers Date: Thu, 20 Aug 2026 22:36:35 +0200 Subject: [PATCH 2/3] feat(renovate): use gomodTidyAll to automatically tidy dependent modules --- .github/renovate.json5 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 7596c9564e..80eab92b51 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -26,7 +26,7 @@ 'golang', ], postUpdateOptions: [ - 'gomodTidy', + 'gomodTidyAll', ], semanticCommitType: 'build', schedule: [ @@ -46,7 +46,7 @@ 'golang', ], postUpdateOptions: [ - 'gomodTidy', + 'gomodTidyAll', ], semanticCommitType: 'build', schedule: [ @@ -179,7 +179,7 @@ 'before 8am on Wednesday', ], postUpdateOptions: [ - 'gomodTidy', + 'gomodTidyAll', ], } ], @@ -192,7 +192,7 @@ ], }, postUpdateOptions: [ - 'gomodTidy', + 'gomodTidyAll', ], semanticCommits: 'enabled', semanticCommitType: 'build', From 56d65e59dedb895e24ce4241cc6f87168a6409e7 Mon Sep 17 00:00:00 2001 From: wpessers Date: Thu, 20 Aug 2026 22:46:42 +0200 Subject: [PATCH 3/3] fix(renovate): only run lockfile maintenance for minor and patch versions of indirect and shared deps --- .github/renovate.json5 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 80eab92b51..8db1a0e484 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -169,12 +169,11 @@ { groupName: "Lock file maintenance golang", matchDepTypes: ["indirect", "replace"], + matchUpdateTypes: ["minor", "patch"], matchCategories: [ 'golang', ], enabled: true, - separateMajorMinor: false, - separateMultipleMajor: false, schedule: [ 'before 8am on Wednesday', ],