From 7a0bed8bef1f0d859bf6154366978c9d94984500 Mon Sep 17 00:00:00 2001
From: Michal Maciejewski <michal.mac@gmail.com>
Date: Fri, 29 Sep 2023 11:47:12 +0200
Subject: [PATCH] deps: group dependabot version updates

This is to avoid having a lot of coexisting dependabot-triggered PRs (each addressing individual version bump), which results in a lot of
- CI builds (especially that we require PR to be in sync with the master branch)
- PR-based releases deployed to our mvn repo
---
 .github/dependabot.yml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index b76b8957033..749aa797fa1 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -4,7 +4,14 @@ updates:
     directory: "/"
     schedule:
       interval: "daily"
+    groups:
+      maven:
+        patterns: ["*"]
+
   - package-ecosystem: "github-actions"
     directory: "/"
     schedule:
       interval: "daily"
+    groups:
+      github-actions:
+        patterns: ["*"]