From 5d7ff04a603e672f22fac0ea7352b6c63041f3e3 Mon Sep 17 00:00:00 2001 From: cuioss oliver <23139298+cuioss@users.noreply.github.com> Date: Tue, 4 Aug 2026 23:30:54 +0200 Subject: [PATCH] fix: drop unsupported semver cooldown keys from github-actions entry Dependabot has been rejecting this repo's .github/dependabot.yml since 2026-02-19 (7fa52b37), the last commit to touch the file: The property '#/updates/N/cooldown/semver-major-days' is not supported for the package ecosystem 'github-actions'. (same for semver-minor-days and semver-patch-days) One rejected property invalidates the entire file, so version updates have been disabled repo-wide -- for every ecosystem, not just the github-actions entry. It stayed invisible because Dependabot reports this in a check-run, not an Actions run, and that check only re-runs when the file itself changes. Remove the three keys from the github-actions entry, keeping default-days: 3. The other entries support them and are left as is. The org-side instruction that produced this is fixed in cuioss/cuioss-organization#233 and #234. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01CucanbUKECmSi3Bn6TFxxw --- .github/dependabot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1fb53ba5..66f0127e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,8 +19,8 @@ updates: directory: / schedule: interval: daily + # Only `default-days`: the `semver-*-days` keys are rejected for the + # github-actions ecosystem, and one rejected key invalidates the whole file, + # which disables version updates for the entire repo. cooldown: default-days: 3 - semver-major-days: 7 - semver-minor-days: 3 - semver-patch-days: 1