From 14d2ab9b87e1962c448afd7e5048c222d2ef6729 Mon Sep 17 00:00:00 2001 From: Matthieu MOREL Date: Sun, 30 Nov 2025 20:09:15 +0100 Subject: [PATCH 1/2] Add Dependabot configuration for multiple ecosystems Signed-off-by: Matthieu MOREL --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..34536579 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: bazel + directory: / + schedule: + interval: "weekly" + - package-ecosystem: gomod + directory: /go + schedule: + interval: "weekly" + - package-ecosystem: pip + directory: /python + schedule: + interval: "weekly" From 513a0d1d3ce67254649179c6516ddfa08fd5da9a Mon Sep 17 00:00:00 2001 From: Matthieu MOREL Date: Sat, 20 Dec 2025 21:06:58 +0100 Subject: [PATCH 2/2] Enhance dependabot.yml with dependency groups Added groups for dependencies in Bazel, Go, and Python ecosystems. Signed-off-by: Matthieu MOREL Signed-off-by: Matthieu MOREL --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 34536579..f5696549 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,13 +2,25 @@ version: 2 updates: - package-ecosystem: bazel directory: / + groups: + dependencies: + patterns: + - "*" schedule: interval: "weekly" - package-ecosystem: gomod directory: /go + groups: + dependencies: + patterns: + - "*" schedule: interval: "weekly" - package-ecosystem: pip directory: /python + groups: + dependencies: + patterns: + - "*" schedule: interval: "weekly"