From 6e352f15bd34b2d30a70191e332a620ff5235c9c Mon Sep 17 00:00:00 2001 From: Mateusz Urbanek Date: Thu, 10 Apr 2025 11:17:36 +0200 Subject: [PATCH] fix: add wildcard dirs to dependabot Signed-off-by: Mateusz Urbanek --- .github/dependabot.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0a8f611f..28eb2ef9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,10 +3,11 @@ enable-beta-ecosystems: true updates: - package-ecosystem: "gomod" - directory: "/" + directories: + - "**/*" schedule: interval: "weekly" - groups: # batch updates together for fewer dependabot PRs + groups: golang-dependencies: patterns: - "github.com/golang*" @@ -18,11 +19,15 @@ updates: exclude-patterns: # controller-runtime has history of breaking API changes more often than other k8s projects - "sigs.k8s.io/controller-runtime" - github-dependencies: - patterns: - - "github.com*" - package-ecosystem: "docker" - directory: "/" + directories: + - "**/*" + schedule: + interval: "weekly" + + - package-ecosystem: "github-actions" + directories: + - "**/*" schedule: interval: "weekly"