From 8f1a6da5459d5e09c9dcb69642b76d5c967fff2b Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Mon, 27 Jul 2026 21:34:26 +0200 Subject: [PATCH] ci: let renovate manage github action versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit enabledManagers was limited to npm, so action versions never got update PRs and drifted up to three majors behind — checkout and setup-node were still on v4 while v7 was current. The existing packageRules all match on `matchManagers: ["npm"]`, so action updates fall through to the defaults: individual PRs, no automerge, reviewed like any other major. --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 19ebbfabc..b98dbdbe2 100644 --- a/renovate.json +++ b/renovate.json @@ -101,7 +101,7 @@ "prHourlyLimit": 2, "prConcurrentLimit": 5, "updatePinnedDependencies": false, - "enabledManagers": ["npm"], + "enabledManagers": ["npm", "github-actions"], "ignoreDeps": [], "ignorePaths": ["**/node_modules/**", "**/dist/**", "**/coverage/**"] }