From 457f3470619ba4eb3912ba75f0033372b96943d0 Mon Sep 17 00:00:00 2001 From: James Abley Date: Thu, 9 Apr 2026 17:05:29 +0100 Subject: [PATCH] Configure dependabot with a 7 day cooldown This is adopting our standard configuration for GitHub. --- .github/dependabot.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index a76cce4c..82cc9778 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -3,6 +3,8 @@ updates: # Python dependencies - package-ecosystem: "pip" directory: "/" + cooldown: + default-days: 7 schedule: interval: "weekly" day: "monday" @@ -11,6 +13,8 @@ updates: # GitHub Actions - package-ecosystem: "github-actions" directory: "/" + cooldown: + default-days: 7 schedule: interval: "weekly" day: "monday" @@ -19,6 +23,8 @@ updates: # Pre-commit hooks - package-ecosystem: "pre-commit" directory: "/" + cooldown: + default-days: 7 schedule: interval: "weekly" day: "monday"