From 9ce28c1d125373291b3a1542a2d3e175dbff8b39 Mon Sep 17 00:00:00 2001 From: Erik Bershel <110455084+erik-bershel@users.noreply.github.com> Date: Fri, 29 Mar 2024 22:17:15 +0100 Subject: [PATCH] Revert "[Windows] pin zstd to v1.5.5 (#9570)" (#9589) This reverts commit f6950e8a95e1479834a45cf440978bb2053c9a7a. --- images/windows/scripts/build/Install-Zstd.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/images/windows/scripts/build/Install-Zstd.ps1 b/images/windows/scripts/build/Install-Zstd.ps1 index f0be73ba..20ae3fd2 100644 --- a/images/windows/scripts/build/Install-Zstd.ps1 +++ b/images/windows/scripts/build/Install-Zstd.ps1 @@ -3,10 +3,9 @@ ## Desc: Install zstd ################################################################################ -# version newer than v1.5.5 has no windows builds yet $downloadUrl = Resolve-GithubReleaseAssetUrl ` -Repo "facebook/zstd" ` - -Version "1.5.5" ` + -Version "latest" ` -UrlMatchPattern "zstd-*-win64.zip" $zstdArchivePath = Invoke-DownloadWithRetry $downloadUrl $zstdName = [IO.Path]::GetFileNameWithoutExtension($zstdArchivePath)