From aeefeef24aad6dde56763368a8c6130dd82421c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jan 2025 13:02:01 +0000 Subject: [PATCH] Bump `git-lfs` version on Windows to 3.6.1 (#483) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: Update the `git-lfs` Windows version in tests Made with ❤️️ by updatecli * chore: Update the `git-lfs` Windows version for Windows Nanoserver Made with ❤️️ by updatecli * chore: Update the `git-lfs` Windows version for Windows Core Server Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- tests/sshAgent.Tests.ps1 | 2 +- windows/nanoserver/Dockerfile | 2 +- windows/windowsservercore/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/sshAgent.Tests.ps1 b/tests/sshAgent.Tests.ps1 index f746862d..39b78fc3 100644 --- a/tests/sshAgent.Tests.ps1 +++ b/tests/sshAgent.Tests.ps1 @@ -58,7 +58,7 @@ TUwLP4n7pK4J2sCIs6fRD5kEYms4BnddXeRuI2fGZHGH70Ci/Q== -----END RSA PRIVATE KEY----- "@ -$global:GITLFSVERSION = '3.6.0' +$global:GITLFSVERSION = '3.6.1' Cleanup($global:CONTAINERNAME) diff --git a/windows/nanoserver/Dockerfile b/windows/nanoserver/Dockerfile index cf3a2abf..cf2cc33b 100644 --- a/windows/nanoserver/Dockerfile +++ b/windows/nanoserver/Dockerfile @@ -77,7 +77,7 @@ ENV WindowsPATH="C:\Windows\system32;C:\Windows" ENV PATH="${WindowsPATH};${ProgramFiles}\PowerShell;${JAVA_HOME}\bin;C:\mingit\cmd" # Install git-lfs -ARG GIT_LFS_VERSION=3.6.0 +ARG GIT_LFS_VERSION=3.6.1 RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; ` $url = $('https://github.com/git-lfs/git-lfs/releases/download/v{0}/git-lfs-windows-amd64-v{0}.zip' -f $env:GIT_LFS_VERSION) ; ` Write-Host "Retrieving $url..." ; ` diff --git a/windows/windowsservercore/Dockerfile b/windows/windowsservercore/Dockerfile index a514b8ba..b5f370c4 100644 --- a/windows/windowsservercore/Dockerfile +++ b/windows/windowsservercore/Dockerfile @@ -67,7 +67,7 @@ RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tl Remove-Item mingit.zip -Force # Install git-lfs -ARG GIT_LFS_VERSION=3.6.0 +ARG GIT_LFS_VERSION=3.6.1 RUN $CurrentPath = (Get-Itemproperty -path 'hklm:\system\currentcontrolset\control\session manager\environment' -Name Path).Path ; ` $NewPath = $CurrentPath + ';{0}\bin;C:\mingit\cmd' -f $env:JAVA_HOME ; ` Set-ItemProperty -path 'hklm:\system\currentcontrolset\control\session manager\environment' -Name Path -Value $NewPath ; `