From e0cf92ff962d57136822811c59fbef3290f0ca70 Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Thu, 25 Jun 2026 13:06:32 +0000 Subject: [PATCH] Enable Dependabot for Go modules and GitHub Actions Keep dependencies up to date with weekly automated PRs. Updates are grouped by ecosystem (k8s, containers) to reduce PR noise. Assisted-by: Claude Opus 4.6 (1M context) Signed-off-by: Alice Frosi --- .github/dependabot.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..44a4009 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,28 @@ +version: 2 +updates: + - package-ecosystem: gomod + directory: / + schedule: + interval: weekly + groups: + k8s: + patterns: + - "k8s.io/*" + - "sigs.k8s.io/*" + containers: + patterns: + - "github.com/containers/*" + - "github.com/opencontainers/*" + minor-and-patch: + update-types: + - minor + - patch + + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + groups: + actions: + patterns: + - "*"