From 349018e076554e77771c455dccec281c98f35fe6 Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Thu, 11 Sep 2025 07:44:49 +0000 Subject: [PATCH] ci: limit update frequency of github/codeql-action The `github/codeql-action` is released frequently, with each merged PR triggering a new release. This creates a lot of noise in the form of Renovate PRs. To reduce this noise, limit the update checks for this action to twice a week, aligning it with the schedule for other frequently updated packages. --- renovate-presets/default.json5 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/renovate-presets/default.json5 b/renovate-presets/default.json5 index a3e52c3b1..0af778b2c 100644 --- a/renovate-presets/default.json5 +++ b/renovate-presets/default.json5 @@ -133,7 +133,12 @@ // Limit how many times these packages get updated (They deploy each merged PR) { - matchDepNames: ['renovate', 'quicktype-core', 'google-closure-compiler'], + matchDepNames: [ + 'github/codeql-action', + 'google-closure-compiler', + 'quicktype-core', + 'renovate', + ], schedule: ['on sunday and wednesday'], },