From 5671c6607c12c5ad3cb4690c41e6e0cc9239af8e Mon Sep 17 00:00:00 2001 From: Wade Simmons Date: Tue, 8 Aug 2023 13:15:42 -0400 Subject: [PATCH] dependabot: group together common deps (#950) Group together deps that are often updated together. - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 603f653..abf74a0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,14 @@ updates: directory: "/" schedule: interval: "weekly" + groups: + golang-x-dependencies: + patterns: + - "golang.org/x/*" + zx2c4-dependencies: + patterns: + - "golang.zx2c4.com/*" + protobuf-dependencies: + patterns: + - "github.com/golang/protobuf" + - "google.golang.org/protobuf"