From 6334e65abb7f2e8a3ccd67f4f19d73986bd4bcaa Mon Sep 17 00:00:00 2001 From: hemanthmanga <166606741+hemanthmanga@users.noreply.github.com> Date: Tue, 25 Feb 2025 13:06:50 +0530 Subject: [PATCH] Revert [Windows] Pin the git version to 2.47.1 (#11652) --- images/windows/scripts/build/Install-Git.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/windows/scripts/build/Install-Git.ps1 b/images/windows/scripts/build/Install-Git.ps1 index 25d87d404..21648cef4 100644 --- a/images/windows/scripts/build/Install-Git.ps1 +++ b/images/windows/scripts/build/Install-Git.ps1 @@ -8,12 +8,12 @@ $downloadUrl = Resolve-GithubReleaseAssetUrl ` -Repo "git-for-windows/git" ` - -Version "2.47.1" ` + -Version "latest" ` -UrlMatchPattern "Git-*-64-bit.exe" $externalHash = Get-ChecksumFromGithubRelease ` -Repo "git-for-windows/git" ` - -Version "2.47.1" ` + -Version "latest" ` -FileName (Split-Path $downloadUrl -Leaf) ` -HashType "SHA256"