From 37ff8392040196fa56db9e580b03af84b8735342 Mon Sep 17 00:00:00 2001 From: fab Date: Wed, 24 Jun 2026 22:37:18 +0200 Subject: [PATCH] chore: add Dependabot config for automated dependency updates (#24) Enables weekly Dependabot updates (minor/patch grouped to limit PR noise) for the ecosystems present in this repo (GitHub Actions plus the relevant package managers and Dockerfiles). Config-only, no code changes. Co-authored-by: Claude Opus 4.8 --- .github/dependabot.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e643789 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,38 @@ +# Dependabot configuration — https://docs.github.com/code-security/dependabot +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + groups: + actions: + patterns: + - "*" + + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + groups: + pip: + patterns: + - "*" + update-types: + - "minor" + - "patch" + + - package-ecosystem: "npm" + directory: "/docs" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + groups: + npm: + patterns: + - "*" + update-types: + - "minor" + - "patch"