From 64ce3b911482dad9c3b871855ec4bb2dccb52eed Mon Sep 17 00:00:00 2001
From: Paul Gschwendtner <paulgschwendtner@gmail.com>
Date: Tue, 28 Jun 2022 22:37:34 +0200
Subject: [PATCH] build: fix loose yarn engine range (#25183)

Renovate incorrectly is fine using Yarn 2+ for the components
repo because our enignes field is too loose.
---
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package.json b/package.json
index 96f4d1687c20..5274d6815bcd 100644
--- a/package.json
+++ b/package.json
@@ -10,7 +10,7 @@
   "license": "MIT",
   "engines": {
     "node": ">=14.0.0 <17.0.0",
-    "yarn": ">= 1.0.0",
+    "yarn": "^1.22.17",
     "npm": "Please use Yarn instead of NPM to install dependencies. See: https://yarnpkg.com/lang/en/docs/install/"
   },
   "scripts": {