From 495936292c30b31a8949bcd62ae7056ba809841b Mon Sep 17 00:00:00 2001 From: Alex Verrico Date: Sun, 30 Aug 2026 12:11:28 +1000 Subject: [PATCH 1/3] Use a dependency group --- .github/dependabot.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 34f088d..14d41c8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,15 +1,17 @@ - version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" + +multi-ecosystem-groups: + dependencies: schedule: # Check for updates on the first Sunday of every month, 8PM UTC interval: "cron" cronjob: "0 20 * * sun#1" + +updates: + - package-ecosystem: "github-actions" + directory: "/" + multi-ecosystem-group: "dependencies" + - package-ecosystem: "pre-commit" directory: "/" - schedule: - # Check for updates on the first Sunday of every month, 8PM UTC - interval: "cron" - cronjob: "0 20 * * sun#1" + multi-ecosystem-group: "dependencies" From cab7ab18692c0a7cc7f630482952aa1fc93cea12 Mon Sep 17 00:00:00 2001 From: Alex Verrico Date: Sun, 30 Aug 2026 12:12:21 +1000 Subject: [PATCH 2/3] dependabot cooldown --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 14d41c8..5e5c436 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,7 +11,11 @@ updates: - package-ecosystem: "github-actions" directory: "/" multi-ecosystem-group: "dependencies" + cooldown: + default-days: 7 - package-ecosystem: "pre-commit" directory: "/" multi-ecosystem-group: "dependencies" + cooldown: + default-days: 7 From a815fe96e1335a3cffaa47b6e8ac23c67b4aebdd Mon Sep 17 00:00:00 2001 From: Alex Verrico Date: Sun, 30 Aug 2026 12:22:08 +1000 Subject: [PATCH 3/3] Fix dependabot.yml issue --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5e5c436..bc1f7a9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,12 +10,14 @@ multi-ecosystem-groups: updates: - package-ecosystem: "github-actions" directory: "/" + patterns: ["*"] multi-ecosystem-group: "dependencies" cooldown: default-days: 7 - package-ecosystem: "pre-commit" directory: "/" + patterns: ["*"] multi-ecosystem-group: "dependencies" cooldown: default-days: 7