From dd56b06c1f6729bbefc39ac9dd482d6af574d1d6 Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Wed, 26 Jul 2023 16:51:56 +0200 Subject: [PATCH] Allow k8s.io dependabot tracking on the 0.14/0.15 branches This ensures we get bug fixes on the appropriate k8s.io branches. There's no point in configuring earlier branches than 0.14, because the versions of k8s.io they track have reached their EOL. We can revisit this if we bump to a supported k8s.io release on those release branches. Signed-off-by: Stephen Kitt --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 824c77a0e..8a5dd83b5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -25,6 +25,30 @@ updates: target-branch: release-0.15 schedule: interval: monthly + - package-ecosystem: gomod + target-branch: "release-0.14" + directory: "/" + schedule: + interval: weekly + allow: + # Pick up k8s.io updates + - dependency-name: k8s.io/apiextensions-apiserver + ignore: + # 0.14 tracks the 0.25 branch + - dependency-name: k8s.io/* + versions: ">= 0.26.0-alpha.0" + - package-ecosystem: gomod + target-branch: "release-0.15" + directory: "/" + schedule: + interval: weekly + allow: + # Pick up k8s.io updates + - dependency-name: k8s.io/apiextensions-apiserver + ignore: + # 0.15 tracks the 0.26 branch + - dependency-name: k8s.io/* + versions: ">= 0.27.0-alpha.0" - package-ecosystem: gomod directory: / schedule: