From e88710a29d9b958bdf50d433fcb203d27a1be7fc Mon Sep 17 00:00:00 2001 From: souleb Date: Thu, 21 Nov 2024 11:56:21 +0100 Subject: [PATCH] Create dependabot.yaml --- .github/workflows/dependabot.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 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 0000000..2033d5d --- /dev/null +++ b/.github/workflows/dependabot.yaml @@ -0,0 +1,31 @@ +version: 2 +updates: + # Docker images + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + commit-message: + prefix: "chore:" + + # GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + day: "tuesday" + groups: + kubernetes: + patterns: [ "k8s.io/*" ] + ignore: + # Ignore controller-runtime, and Kubernetes major and minor updates. These should be done manually. + - dependency-name: "sigs.k8s.io/controller-runtime" + update-types: [ "version-update:semver-major", "version-update:semver-minor" ] + - dependency-name: "k8s.io/*" + update-types: [ "version-update:semver-major", "version-update:semver-minor" ]