From feb6708b412dfd61b0c58e146565c16c2d19d073 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Tue, 26 May 2026 10:06:46 -0400 Subject: [PATCH] ci: add dependabot config Weekly checks for four ecosystems present in the repo: gomod (grouped into a single PR to keep review noise low), github-actions, and the two Dockerfiles under benchmarking/locust and demos/claude-code-multiplex/workload. Signed-off-by: Davanum Srinivas --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..77cf6951 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,24 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + groups: + go-deps: + patterns: ["*"] + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "docker" + directory: "/benchmarking/locust" + schedule: + interval: "weekly" + + - package-ecosystem: "docker" + directory: "/demos/claude-code-multiplex/workload" + schedule: + interval: "weekly"