From 1bab75830b712dac90c9fdc9d4ab000e96cd4ecc Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 16 Mar 2026 15:35:24 +0100 Subject: [PATCH] Use grouped dependabot updates When there is a CVE in some JS package, it seems to coincide with an avalanche of security releases of random other packages. Dependabot can actually create bulk PRs, let's try those. --- .github/dependabot.yml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6f2b63f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,41 @@ +version: 2 +updates: + # Rust dependencies + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + groups: + dependency-type: + patterns: + - "*" + + # Python dependencies + - package-ecosystem: "pip" + directory: "/tools" + schedule: + interval: "weekly" + groups: + dependency-type: + patterns: + - "*" + + # daemon/web Node.js dependencies + - package-ecosystem: "npm" + directory: "/daemon/web" + schedule: + interval: "weekly" + groups: + dependency-type: + patterns: + - "*" + + # installer-gui Node.js dependencies + - package-ecosystem: "npm" + directory: "/installer-gui" + schedule: + interval: "weekly" + groups: + dependency-type: + patterns: + - "*"