diff --git a/tests/agent.Tests.ps1 b/tests/agent.Tests.ps1 index 6421ef380..745dcc1ff 100644 --- a/tests/agent.Tests.ps1 +++ b/tests/agent.Tests.ps1 @@ -23,7 +23,7 @@ if($global:WINDOWSFLAVOR -eq 'nanoserver') { $global:CONTAINERSHELL = "pwsh.exe" } -$global:GITLFSVERSION = '3.4.0' +$global:GITLFSVERSION = '3.4.1' Cleanup($global:CONTAINERNAME) diff --git a/windows/nanoserver/Dockerfile b/windows/nanoserver/Dockerfile index 69c51cb69..a4bf6cd7d 100644 --- a/windows/nanoserver/Dockerfile +++ b/windows/nanoserver/Dockerfile @@ -60,7 +60,7 @@ ENV ProgramFiles="C:\Program Files" ` JAVA_HOME="${JAVA_HOME}" ENV PATH="${WindowsPATH};${ProgramFiles}\PowerShell;${JAVA_HOME}\bin;C:\mingit\cmd" -ARG GIT_LFS_VERSION=3.4.0 +ARG GIT_LFS_VERSION=3.4.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 4935ee340..0499f7234 100644 --- a/windows/windowsservercore/Dockerfile +++ b/windows/windowsservercore/Dockerfile @@ -52,7 +52,7 @@ RUN $CurrentPath = (Get-Itemproperty -path 'hklm:\system\currentcontrolset\contr $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 -ARG GIT_LFS_VERSION=3.4.0 +ARG GIT_LFS_VERSION=3.4.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..." ; `