From 434680b3833b6f37308d0421528c5b128799fcd1 Mon Sep 17 00:00:00 2001 From: hemanthmanga <166606741+hemanthmanga@users.noreply.github.com> Date: Sun, 23 Feb 2025 07:29:21 +0530 Subject: [PATCH] [Windows] pin the git version to 2.47.1 (#11642) --- 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 21648cef4..25d87d404 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 "latest" ` + -Version "2.47.1" ` -UrlMatchPattern "Git-*-64-bit.exe" $externalHash = Get-ChecksumFromGithubRelease ` -Repo "git-for-windows/git" ` - -Version "latest" ` + -Version "2.47.1" ` -FileName (Split-Path $downloadUrl -Leaf) ` -HashType "SHA256"