From 9340f8e12aab8ae27d0fe3f309308b762ebc61ca Mon Sep 17 00:00:00 2001 From: Michael Vittrup Larsen Date: Tue, 25 Apr 2023 09:30:21 +0200 Subject: [PATCH] Depenabot should ignore all minor updates of k8s.io dependencies --- .github/dependabot.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 11bcf78b..aeda0385 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,11 +5,9 @@ updates: schedule: interval: "weekly" ignore: - # The version of client-go and api should approximately match target Kubernetes version, i.e. only update semver-patch version + # The version of client-go and other Kubernetes APIs should approximately match target Kubernetes version, i.e. only update semver-patch version # Minor version updates then becomes a manual procedure. Security updates are not ignored by this - - dependency-name: "k8s.io/client-go" - versions: ["version-update:semver-minor"] - - dependency-name: "k8s.io/api" + - dependency-name: "k8s.io/*" versions: ["version-update:semver-minor"] - package-ecosystem: "github-actions"