From 163d3d449d6df722534116e5c92fed7c4f36c250 Mon Sep 17 00:00:00 2001 From: Josep Boix Requesens Date: Mon, 11 May 2026 16:18:04 +0200 Subject: [PATCH] chore(deps): add Dependabot configuration Add `.github/dependabot.yml` to automate dependency updates across the repository. The configuration is split into separate entries to keep PRs isolated per package ecosystem: - GitHub Actions: one entry at the root, grouping minor/patch updates. - NPM: one entry at the root grouping minor/patch updates. --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..66f8dc4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,24 @@ +version: 2 +updates: + # --- GitHub Actions --- + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + action-updates: + patterns: + - "*" + update-types: + - "minor" + - "patch" + + # --- NPM --- + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + groups: + node-dependencies: + patterns: [ "*" ] + update-types: [ "minor", "patch" ]