From c94d6197b8b8018a70936d8aba74c8b966b069b4 Mon Sep 17 00:00:00 2001 From: Philip Laine Date: Tue, 10 Mar 2026 21:32:51 +0100 Subject: [PATCH] Enable dependabot for both GH actions and Go (#119) With the changes done in #118 we want to enable automatic workflow version updates. --- .github/dependabot.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..d6d30ce --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,17 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 15 + - package-ecosystem: "gomod" + directories: + - "/" + schedule: + interval: "daily" + open-pull-requests-limit: 15 + groups: + k8s: + patterns: + - "k8s.io/*"