From e8d9c4af6960b16d639554f219f829c62a9be3cb Mon Sep 17 00:00:00 2001 From: Robert Stupp Date: Wed, 19 Mar 2025 15:14:34 +0100 Subject: [PATCH] Renovate: Group all Quarkus dependencies Quarkus-platform releases happen some time after the "actual" Quarkus release, which causes "broken" CI for Renovate PRs against for example the Quarkus Gradle plugin. This change groups all Quarkus dependencies together to consistently bump all Quarkus-platform dependencies at once. --- .github/renovate.json5 | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 26972b2cf4..2f89c09069 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -65,6 +65,18 @@ extends: ["schedule:weekly"], }, + // Quarkus platform + plugin together + { + groupName: "Quarkus Platform and Group", + matchManagers: ["gradle"], + matchPackageNames: [ + "io.quarkus.platform:quarkus-bom", + "io.quarkus.platform:quarkus-amazon-services-bom", + "io.quarkus.platform:quarkus-google-cloud-services-bom", + "io.quarkus:io.quarkus.gradle.plugin", + ], + }, + // Turn off major & minor version updates on version-branches { matchBaseBranches: ["/^release/.*/"],