From b6dfe941eeeeba32afd1f428605cc6465166ca4d Mon Sep 17 00:00:00 2001 From: Nitish Bharambe <78108900+nitbharambe@users.noreply.github.com> Date: Fri, 21 Aug 2026 09:11:59 +0200 Subject: [PATCH] Change Dependabot schedule to cron with cooldown Updated Dependabot configuration to use cron schedule for updates and added cooldown settings. Signed-off-by: Nitish Bharambe <78108900+nitbharambe@users.noreply.github.com> --- .github/dependabot.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d6ee6af..2c3dd96 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,4 +7,23 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" + interval: "cron" + cronjob: "0 4 * * 2" # Every Tuesday at 4:00 UTC + groups: + all-dependencies: + patterns: + - "*" + cooldown: + default-days: 7 + + - package-ecosystem: "uv" + directory: "/" + schedule: + interval: "cron" + cronjob: "0 4 * * 2" # Every Tuesday at 4:00 UTC + groups: + all-dependencies: + patterns: + - "*" + cooldown: + default-days: 7