From 8515a0581d0b06427057be9af5b95510eddb739d Mon Sep 17 00:00:00 2001 From: JonaBenja Date: Wed, 4 Mar 2026 11:30:38 +0100 Subject: [PATCH] Fix directories in config for dependabot.yml --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 58bc8ad5..752b9b9f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,7 @@ version: 2 updates: - package-ecosystem: "pip" # See documentation for possible values - directory: "/src" # Location of package manifests + directories: ["/tools", "/jwtproxy"] # Location of package manifests schedule: interval: "weekly" groups: @@ -16,6 +16,6 @@ updates: - "minor" - "patch" - package-ecosystem: "docker" # See documentation for possible values - directory: "/src" # Location of package manifests + directories: ["/", "/jwtproxy"] # Location of package manifests schedule: interval: "weekly"