From 01a01accbda4010710eab3cdb8f5d14528f0c236 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Fri, 30 Jan 2026 02:17:32 +0100 Subject: [PATCH 1/2] Ignore release.yml in Renovate config Signed-off-by: William Woodruff --- .github/renovate.json5 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 7fd4268226a2e..fd7f857979ab2 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -39,6 +39,13 @@ matchManagers: ["cargo"], enabled: false, }, + { + // Disable updates of actions used by `.github/workflows/release.yml`; + // these action pins are managed by dist-workspace.toml + matchFileNames: [".github/workflows/release.yml"], + matchManagers: ["github-actions"], + enabled: false, + } { // Create dedicated branches to update references to dependencies in the documentation. matchFileNames: ["docs/**/*.md"], From 3d406a5dcf30a18b4b477afea431dde39e1c8866 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Fri, 30 Jan 2026 02:20:34 +0100 Subject: [PATCH 2/2] syntax Signed-off-by: William Woodruff --- .github/renovate.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index fd7f857979ab2..93b6092b30574 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -45,7 +45,7 @@ matchFileNames: [".github/workflows/release.yml"], matchManagers: ["github-actions"], enabled: false, - } + }, { // Create dedicated branches to update references to dependencies in the documentation. matchFileNames: ["docs/**/*.md"],