From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web12.426.1652832868112573329 for ; Tue, 17 May 2022 17:14:28 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=rVbp3vPY; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.195.228.134]) by linux.microsoft.com (Postfix) with ESMTPSA id 1A60920F3D1A; Tue, 17 May 2022 17:14:27 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 1A60920F3D1A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1652832867; bh=UMr5rXfdrY8BwF3mOMNGHYvoYZMtiRNHXzAJIatJciY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rVbp3vPYxIbivhP1heEd/auqYFTH1loVQY143DfZxQ/qEfb5j7/21ZQsYskZ8zdPP CnYan67D7pKxQsAItc9rI4FUF06kc0nUWUIvH1pvELBiP+p08hzD03QpoCLwaumiyo Zskhq12PcdFwrI2yiKzJ8/Fhhbz4HxVRRSN+/T9A= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Michael D Kinney , Liming Gao Subject: [PATCH v2 09/11] .azurepipelines: Fix cspell version to v5.20.0 Date: Tue, 17 May 2022 20:13:36 -0400 Message-Id: <20220518001338.1380-10-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20220518001338.1380-1-mikuback@linux.microsoft.com> References: <20220518001338.1380-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki The v5.21.0 update introduced a number of new issues that might impact stable tag integration so this fixes the version to the previous release. Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Michael Kubacki This value can be revisited in the future to update the --- .azurepipelines/templates/spell-check-prereq-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azurepipelines/templates/spell-check-prereq-steps.yml b/.az= urepipelines/templates/spell-check-prereq-steps.yml index 98ee3cfa6bc6..226909d54c4e 100644 --- a/.azurepipelines/templates/spell-check-prereq-steps.yml +++ b/.azurepipelines/templates/spell-check-prereq-steps.yml @@ -17,6 +17,6 @@ steps: #checkLatest: false # Optional condition: and(gt(variables.pkg_count, 0), succeeded()) =20 -- script: npm install -g cspell +- script: npm install -g cspell@5.20.0 displayName: 'Install cspell npm' condition: and(gt(variables.pkg_count, 0), succeeded()) --=20 2.28.0.windows.1