From 2e02f12c2cca9373d481b40e95a07fa404306227 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 08:55:13 +0000 Subject: [PATCH 1/3] chore: Update the `git-lfs` Windows version in tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- tests/agent.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/agent.Tests.ps1 b/tests/agent.Tests.ps1 index ed196dce1..7c214fd21 100644 --- a/tests/agent.Tests.ps1 +++ b/tests/agent.Tests.ps1 @@ -28,7 +28,7 @@ if ($global:WINDOWSFLAVOR -eq 'nanoserver') { $global:CONTAINERSHELL = 'pwsh.exe' } -$global:GITLFSVERSION = '3.5.1' +$global:GITLFSVERSION = '3.6.0' # # Uncomment to help debugging when working on this script # Write-Host "= DEBUG: global vars" From fd707238764a40e81fefb8e2df9d271978c55161 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 08:55:14 +0000 Subject: [PATCH 2/3] chore: Update the `git-lfs` Windows version for Windows Nanoserver MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- windows/nanoserver/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/nanoserver/Dockerfile b/windows/nanoserver/Dockerfile index cca6702ea..ca38a86c5 100644 --- a/windows/nanoserver/Dockerfile +++ b/windows/nanoserver/Dockerfile @@ -72,7 +72,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.5.1 +ARG GIT_LFS_VERSION=3.6.0 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..." ; ` From 532e5dff36cbe331247f28607dfb786ab0788a8f Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 08:55:15 +0000 Subject: [PATCH 3/3] chore: Update the `git-lfs` Windows version for Windows Core Server MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- windows/windowsservercore/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/windowsservercore/Dockerfile b/windows/windowsservercore/Dockerfile index ff97dd9f9..4baf23262 100644 --- a/windows/windowsservercore/Dockerfile +++ b/windows/windowsservercore/Dockerfile @@ -64,7 +64,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.5.1 +ARG GIT_LFS_VERSION=3.6.0 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..." ; `