From 8d43dc8e72fd6d22b6c7e379947ac024ba87bd5e Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Thu, 2 Oct 2025 19:19:54 +0300 Subject: [PATCH] Fix Renovate 'lock file maintenance' schedule Turns out that the interaction between Renovate Cloud scheduling and `"schedule"` setting is confusing and poorly documented. Using the free Cloud option, Renovate _usually_ runs once per day anyway, at some arbitrary time. If that time does not match our defined `"schedule"`, then Renovate does nothing. By removing `"schedule"`, it should result in actually running once per day. --- .github/renovate.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index b0c074bd4..374a5f034 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -2,7 +2,6 @@ "dependencyDashboard": false, "lockFileMaintenance": { "enabled": true, - "schedule": ["* 3-4 * * *"], "automerge": true, "automergeType": "branch" },