From d5859f8bc958e08c163515e4714d72f1c4e172e7 Mon Sep 17 00:00:00 2001 From: Robin Lungwitz Date: Tue, 9 Dec 2025 14:05:54 +0100 Subject: [PATCH] fix: bypass minimumReleaseAge for datasources without timestamp support **WHAT** - update `minimumReleaseAgeBehaviour` to `timestamp-optional` **WHY** - [`minimumReleaseAgeBehaviour`](https://docs.renovatebot.com/configuration-options/#minimumreleaseagebehaviour) defaulting to `timestamp-required` **blocks** dependency updates of dependencies from datasources without timestamp support (e.g. [Github actions digest updates](https://docs.renovatebot.com/modules/datasource/git-refs/)) - restore the previous default considering dependencies stable for datasources without timestamp support to unblock the updates for these --- default.json | 1 + 1 file changed, 1 insertion(+) diff --git a/default.json b/default.json index 83368f6..e405f7a 100644 --- a/default.json +++ b/default.json @@ -6,6 +6,7 @@ ], "internalChecksFilter": "strict", "minimumReleaseAge": "5 days", + "minimumReleaseAgeBehaviour": "timestamp-optional", "packageRules": [ { "matchPackageNames": ["io.kubernetes:client-java"],