From d06de3c2ef0f65149e03e0de2ca5d838ef3d1c6b Mon Sep 17 00:00:00 2001 From: Dan Guido Date: Thu, 12 Feb 2026 23:45:56 -0500 Subject: [PATCH] Add dependabot config for uv and github-actions ecosystems Covers both detected ecosystems (uv via pyproject.toml+uv.lock, github-actions via .github/workflows/) with weekly schedule, 7-day cooldown, and grouped updates. Co-Authored-By: Claude Opus 4.6 --- .github/dependabot.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..43ad12a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +version: 2 +updates: + - package-ecosystem: "uv" + directory: "/" + schedule: + interval: "weekly" + cooldown: + default-days: 7 + groups: + uv-dependencies: + patterns: + - "*" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + cooldown: + default-days: 7 + groups: + actions-dependencies: + patterns: + - "*"