From 63ab9b2f61d9a475c97c5c495ed13e0a995104b2 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 29 May 2026 21:29:11 +0200 Subject: [PATCH] ci(dependabot): group react and react-dom updates Astro requires react and react-dom to share the exact same version. Dependabot opened them as separate PRs, so a lone react-dom bump (#11412) failed the build with a version mismatch. Grouping the react packages keeps them lock-stepped in a single PR. Co-Authored-By: Claude Opus 4.8 (1M context) Change-Id: I34915144bf662441b237063d00f96e0607755788 --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3d2f7eba42..759ec790c4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,6 +10,16 @@ updates: allow: - dependency-name: "*" dependency-type: "all" + groups: + # Astro requires react and react-dom to be the exact same version, + # so they must be bumped together in a single PR. + react: + patterns: + - "react" + - "react-dom" + - "@types/react" + - "@types/react-dom" + - "@astrojs/react" commit-message: prefix: chore prefix-development: chore