From 06613319d9e7bc46c22cd24f06b9849a034cd9a1 Mon Sep 17 00:00:00 2001 From: Anand Krishnamoorthi Date: Fri, 27 Mar 2026 13:26:39 -0500 Subject: [PATCH] ci(dependabot): restore cargo dependency grouping 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 f9444bf7..31779f18 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"