From ccf0044c395e92773c37623b1982d9eb80dd20ab Mon Sep 17 00:00:00 2001 From: John Forstmeier Date: Sun, 22 Feb 2026 14:14:31 -0500 Subject: [PATCH 1/5] Add Dependabot configuration file --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..54043d29 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +version: 2 +updates: + - package-ecosystem: uv + directory: / + schedule: + interval: weekly + day: monday + time: 08:00 + timezone: America/New_York From 1d2fc8a8636abe6bb74d4bb4b60d244f48bb975d Mon Sep 17 00:00:00 2001 From: John Forstmeier Date: Sun, 22 Feb 2026 14:16:54 -0500 Subject: [PATCH 2/5] Add Rust configuration for Dependabot --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 54043d29..85b98d76 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,3 +7,10 @@ updates: day: monday time: 08:00 timezone: America/New_York + - package-ecosystem: cargo + directory: / + schedule: + interval: weekly + day: monday + time: 08:00 + timezone: America/New_York From d592f4ff384046e0212fd94c3c9402eb95a57fae Mon Sep 17 00:00:00 2001 From: John Forstmeier Date: Sun, 22 Feb 2026 14:23:41 -0500 Subject: [PATCH 3/5] Fix "time" field formatting --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 85b98d76..4d6e0f76 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,12 +5,12 @@ updates: schedule: interval: weekly day: monday - time: 08:00 + time: 8:00 timezone: America/New_York - package-ecosystem: cargo directory: / schedule: interval: weekly day: monday - time: 08:00 + time: 8:00 timezone: America/New_York From 8335850106030841daef41509d0bdd491ca6f91e Mon Sep 17 00:00:00 2001 From: John Forstmeier Date: Sun, 22 Feb 2026 14:26:11 -0500 Subject: [PATCH 4/5] Convert Dependabot schedule to cronjob --- .github/dependabot.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4d6e0f76..925dc7b5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,14 +3,12 @@ updates: - package-ecosystem: uv directory: / schedule: - interval: weekly - day: monday - time: 8:00 + interval: cron + cronjob: 0 8 * * * timezone: America/New_York - package-ecosystem: cargo directory: / schedule: - interval: weekly - day: monday - time: 8:00 + interval: cron + cronjob: 0 8 * * * timezone: America/New_York From 971a87767cf7192743515bca44c7e34292d03d95 Mon Sep 17 00:00:00 2001 From: John Forstmeier Date: Sun, 22 Feb 2026 14:29:12 -0500 Subject: [PATCH 5/5] Add bot pull request feedback --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 925dc7b5..83e55083 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,3 +1,4 @@ +--- version: 2 updates: - package-ecosystem: uv