From 0da3e2a36a08fe95ad4cb6797b44e6a99b8c3ad8 Mon Sep 17 00:00:00 2001 From: Ansgar Mertens Date: Fri, 20 Jun 2025 15:58:13 +0200 Subject: [PATCH] Dependabot: Single weekly PR for GH Actions, Single PR for terraform-plugin-* Go dependencies (#299) * github: Group all Github action updates in a single Dependabot PR once a week * dependabot: single PR for terraform-plugin-* dependencies --- .github/dependabot.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7dfbba7..a0f39f4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,11 +8,23 @@ updates: schedule: # Check for updates to Go modules every weekday interval: "daily" + groups: + # Group all terraform-plugin-(go|sdk|framework|testing) dependencies together + "terraform-plugin": + patterns: + - "github.com/hashicorp/terraform-plugin-*" - package-ecosystem: "gomod" directory: "/tools" schedule: interval: "daily" - package-ecosystem: "github-actions" directory: "/" + groups: + "github-actions": + patterns: + - "*" # Group all GitHub Actions dependencies together schedule: - interval: "daily" + interval: "weekly" + day: "monday" + time: "09:00" + timezone: "Etc/UTC"