From 171631e65084c5058136f54a3c14bde2d7904928 Mon Sep 17 00:00:00 2001 From: Mrityunjay Raj Date: Thu, 5 Feb 2026 08:07:24 +0530 Subject: [PATCH] Add Dependabot configuration for automated dependency updates (#2378) --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..2cd5e2641 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +version: 2 +updates: + # GitHub Actions - weekly updates + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + + # Python dependencies (uv) - weekly updates + - package-ecosystem: "uv" + directory: "/" + schedule: + interval: "weekly"