diff options
author | Michael Kubacki <michael.kubacki@microsoft.com> | 2022-05-17 17:54:36 -0400 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-05-19 03:02:14 +0000 |
commit | 2d1138a1a839992693a82cf69ec1f88dbc64c559 (patch) | |
tree | eb7371facfe53cdd83a34b98ce38d0bcf3811232 /.azurepipelines/templates | |
parent | 708620d29db89d03e822b8d17dc75fbac865c6dc (diff) | |
download | edk2-2d1138a1a839992693a82cf69ec1f88dbc64c559.tar.gz |
.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 <sean.brogan@microsoft.com>
Cc: Bret Barkelew <Bret.Barkelew@microsoft.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This value can be revisited in the future to update the
Diffstat (limited to '.azurepipelines/templates')
-rw-r--r-- | .azurepipelines/templates/spell-check-prereq-steps.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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())
|