From 9b84206d56a47312804419d5b57a8617fcb2a71f Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Mon, 26 Jan 2026 17:02:13 -0800 Subject: [PATCH] Add Dependabot configuration for all dependencies Signed-off-by: Bryan Frimin --- .github/workflows/dependabot.yaml | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/dependabot.yaml diff --git a/.github/workflows/dependabot.yaml b/.github/workflows/dependabot.yaml new file mode 100644 index 000000000..fc1a675b2 --- /dev/null +++ b/.github/workflows/dependabot.yaml @@ -0,0 +1,41 @@ +version: 2 +updates: + # Go modules + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 10 + groups: + go-dependencies: + patterns: + - "*" + + # npm packages (root) + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 10 + groups: + npm-dependencies: + patterns: + - "*" + + # Docker base images + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 5 + + # GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 5 + groups: + github-actions: + patterns: + - "*"