From 75b0112ce139adfa972cb69178e0e7a876fa5317 Mon Sep 17 00:00:00 2001 From: Andreas Coroiu Date: Mon, 23 Feb 2026 16:39:51 +0100 Subject: [PATCH] fix: block renovate from updating package (#19138) `actions/create-github-app-token` breaks test-browser-interactions.yml if updated past v2.0.3 according to Autofill. This PR will pin the verison untill the team can look into the issue. --- .github/renovate.json5 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index b264514e736..1e8f72cd8a0 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -542,6 +542,12 @@ }, // ==================== Special Version Constraints ==================== + { + matchPackageNames: ["actions/create-github-app-token"], + matchFileNames: [".github/workflows/test-browser-interactions.yml"], + allowedVersions: "<= 2.0.3", + description: "Versions after v2.0.3 break the test-browser-interactions workflow. Remediation tracked in PM-28174.", + }, { // Any versions of lowdb above 1.0.0 are not compatible with CommonJS. matchPackageNames: ["lowdb"],