From 2d1138a1a839992693a82cf69ec1f88dbc64c559 Mon Sep 17 00:00:00 2001 From: Michael Kubacki Date: Tue, 17 May 2022 17:54:36 -0400 Subject: [PATCH] .azurepipelines: Fix cspell version to v5.20.0 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 Reviewed-by: Liming Gao 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/.azurepipelines/templates/spell-check-prereq-steps.yml index 98ee3cfa6b..226909d54c 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()) -- 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())