From 686c91f94ebb6940c3b6bdff31dc39bd22c49475 Mon Sep 17 00:00:00 2001 From: Manfred Riem Date: Wed, 18 Feb 2026 17:42:41 -0600 Subject: [PATCH] feat: add dependabot configuration for pip and GitHub Actions updates (#1622) --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..47762116 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"