From 610d9bac31edd34e34fccec2f8f95e6c195a0b42 Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Fri, 12 Jul 2024 13:24:48 -0700 Subject: [PATCH] Simplify dependabot config (#327) Signed-off-by: Luca Comellini --- .github/dependabot.yml | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e010892f..656970c6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,23 +4,21 @@ updates: directory: "/" schedule: interval: "weekly" + - package-ecosystem: "docker" - directory: "/protobuf" - schedule: - interval: "weekly" - - package-ecosystem: "docker" - directory: "/schemas" + directories: + - "**/*" schedule: interval: "weekly" + - package-ecosystem: "gomod" - directory: "/schemas" - schedule: - interval: "weekly" - - package-ecosystem: "docker" - directory: "/semantic-conventions" + directories: + - "**/*" schedule: interval: "weekly" + - package-ecosystem: "pip" - directory: "/semantic-conventions" + directories: + - "**/*" schedule: interval: "weekly"