From 5bd8f2b16bb5f835b24d9a46d4c03db818df9e45 Mon Sep 17 00:00:00 2001 From: Andres Tobon Date: Mon, 4 May 2026 15:26:35 -0700 Subject: [PATCH] fix: remove cooldown from unsupported dependabot ecosystems MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit github-actions and helm do not support SemVer-based cooldown config; only gomod (and other SemVer-enabled ecosystems) support it. 🤖 Generated with [Claude Code](https://claude.ai/code) Signed-off-by: Andres Tobon --- .github/dependabot.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ad1eb59..12fcf21 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,19 +20,9 @@ updates: directory: "/" schedule: interval: "daily" - cooldown: - default-days: 7 - semver-major-days: 30 - semver-minor-days: 7 - semver-patch-days: 3 # Helm chart dependencies - package-ecosystem: "helm" directory: "/charts/lfx-v2-meeting-service" schedule: interval: "daily" - cooldown: - default-days: 7 - semver-major-days: 30 - semver-minor-days: 7 - semver-patch-days: 3