This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new cf95a6ff Renovate: Group all Quarkus dependencies (#1206)
cf95a6ff is described below
commit cf95a6ff78978cc5216a49a6528a9e6ff4395bf2
Author: Robert Stupp <[email protected]>
AuthorDate: Wed Mar 19 15:25:45 2025 +0100
Renovate: Group all Quarkus dependencies (#1206)
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 26972b2c..2f89c090 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/.*/"],