From 989ca6df2e74b4975a64daa2c16da0171f34a16b Mon Sep 17 00:00:00 2001 From: Anand Krishnamoorthi <35780660+anakrish@users.noreply.github.com> Date: Mon, 30 Mar 2026 18:44:53 -0500 Subject: [PATCH] ci(dependabot): restore cargo dependency grouping (#645) Without grouping, dependabot creates a separate PR per directory for the same dependency. Each individual PR fails to build due to version skew across the root workspace and binding crates. Signed-off-by: Anand Krishnamoorthi --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f9444bf..31779f1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -22,6 +22,13 @@ updates: interval: "weekly" commit-message: prefix: "build(deps)" + groups: + # Bundle all Cargo dependency updates into a single PR. Without this, + # dependabot creates a separate PR per directory for the same dependency, + # and each individual PR fails to build due to version skew. + rust-dependencies: + patterns: + - "*" # Ignore vendored mimalloc crates; updates are managed manually. ignore: - dependency-name: "regorus-mimalloc"