From 7cfe1127ce0c6a60b918033c31ad2d00ff53211d Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Tue, 10 Oct 2023 09:37:02 +0200 Subject: [PATCH] ci: group golang.org/x/ under golang dependencies Golang dependencies are already grouped, but they only contain packages from `github.com/golang*`. There are more Golang standard packages that are located at `golang.org/x/*`. Because of the tight relationship between these packages, it is more efficient to group updates together. Signed-off-by: Niels de Vos --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c2cd3fa9d..e80201fc1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,6 +11,7 @@ updates: golang-dependencies: patterns: - "github.com/golang*" + - "golang.org/x/*" k8s-dependencies: patterns: - "k8s.io*"