From 741d5b85143ca56250b56571a1d4903638b1e4cf Mon Sep 17 00:00:00 2001 From: Giorgio Ravera <47370115+xraver@users.noreply.github.com> Date: Mon, 26 Jan 2026 18:50:16 +0100 Subject: [PATCH] Add Dependabot configuration for package updates Configure Dependabot for pip, npm, and GitHub Actions with weekly updates. --- .github/dependabot.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..cd4b98e --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,18 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "npm" + directory: "/frontend" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" -- 2.47.3