From 1adf44f29af78d99f8127a671d3771c11786b282 Mon Sep 17 00:00:00 2001 From: Kaj Kowalski Date: Wed, 5 Nov 2025 16:59:19 +0100 Subject: [PATCH] fix: correct dependabot.yml groups configuration - Replace 'multi-ecosystem-group' with proper 'groups' syntax - Add required 'patterns' property with wildcard matcher - Group all dependencies per ecosystem for cleaner PRs - Fixes dependabot configuration validation error --- .github/dependabot.yml | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d550d6f..37cbcae 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,33 +5,51 @@ version: 2 updates: - - package-ecosystem: "uv" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: "uv" + directory: "/" schedule: interval: "monthly" - multi-ecosystem-group: "all" + groups: + all: + patterns: + - "*" - package-ecosystem: "bun" directory: "/" schedule: interval: "monthly" - multi-ecosystem-group: "all" + groups: + all: + patterns: + - "*" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "monthly" - multi-ecosystem-group: "all" + groups: + all: + patterns: + - "*" - package-ecosystem: "docker" directory: "/" schedule: interval: "monthly" - multi-ecosystem-group: "all" + groups: + all: + patterns: + - "*" - package-ecosystem: "docker-compose" directory: "/" schedule: interval: "monthly" - multi-ecosystem-group: "all" + groups: + all: + patterns: + - "*" - package-ecosystem: "devcontainers" directory: "/" schedule: interval: "monthly" - multi-ecosystem-group: "all" + groups: + all: + patterns: + - "*"