From a4ee6a6d74b96bd62a5c4fde28a260fcbd9f596f Mon Sep 17 00:00:00 2001 From: Nathan Stocks Date: Thu, 8 Jan 2026 10:00:27 -0700 Subject: [PATCH 1/2] set dependabot to run at 05:00 UTC on the first Sunday of the month --- .github/dependabot.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index ddf8b4a..c5cf099 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -4,9 +4,11 @@ updates: - package-ecosystem: "cargo" directory: "/" schedule: - interval: "monthly" + interval: "cron" + cronjob: "0 5 8-14 * 0" # Second Sunday of each month at 05:00 UTC - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "monthly" + interval: "cron" + cronjob: "0 5 8-14 * 0" # Second Sunday of each month at 05:00 UTC From 65d983560f36546eacc3a52b350651cc91d075a5 Mon Sep 17 00:00:00 2001 From: Nathan Stocks Date: Fri, 9 Jan 2026 13:44:50 -0700 Subject: [PATCH 2/2] switch to known-working syntax --- .github/dependabot.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index c5cf099..99ed29e 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -5,10 +5,10 @@ updates: directory: "/" schedule: interval: "cron" - cronjob: "0 5 8-14 * 0" # Second Sunday of each month at 05:00 UTC + cronjob: "0 5 2 * *" # Second day of each month at 05:00 UTC - package-ecosystem: "github-actions" directory: "/" schedule: interval: "cron" - cronjob: "0 5 8-14 * 0" # Second Sunday of each month at 05:00 UTC + cronjob: "0 5 2 * *" # Second day of each month at 05:00 UTC