From e8f0a9ebb706c20f80413250ab4c4b0b98c55dad Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Tue, 30 Jun 2026 22:53:36 +0200 Subject: [PATCH] ci: group action digest updates with non-major dependencies Digest and pinDigest updates are not covered by the group:allNonMajor preset (which only matches minor/patch), so SHA-pinned actions like goreleaser-action produced standalone PRs. Since these actions are pinned to floating major tags, a digest update is always within-major and safe to group. Reuse the preset's groupName/groupSlug so they merge into the same weekly grouped PR. --- .github/renovate.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index a618e41e..3e50b142 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -21,6 +21,11 @@ } ], "packageRules": [ + { + "matchUpdateTypes": ["digest", "pinDigest"], + "groupName": "all non-major dependencies", + "groupSlug": "all-minor-patch" + }, { "matchManagers": ["github-actions"], "addLabels": ["area: github actions"]