From 838c1cc4e4685eb2883acdaed669cd35e84b4fbd Mon Sep 17 00:00:00 2001 From: Xianpeng Shen Date: Tue, 15 Sep 2026 21:12:24 +0300 Subject: [PATCH] chore(deps): skip the Dependabot cooldown for packages this org publishes Since 2026-07-14 Dependabot waits 3 days after a release before proposing a version update. cpp-linter 1.14.0 reached PyPI on 2026-09-13 and every job since logged "Filtered out 1 versions due to cooldown". The delay is meant for third-party releases; cpp-linter and clang-tools are published by this org, so exclude them and keep the 3-day default for everything else. --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b7264f2a..e1b2ae63 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,6 +19,13 @@ updates: schedule: interval: "weekly" open-pull-requests-limit: 10 + cooldown: + # GitHub applies a 3-day cooldown to version updates by default; keep it + # for third-party packages, but not for the ones this org publishes. + default-days: 3 + exclude: + - "cpp-linter" + - "clang-tools" groups: org: # org-maintained packages (the "action" dependency group)