From 8857ee7bf730fd4650a73026e5e100d7a1ba8da9 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 02:45:29 +0000 Subject: [PATCH 1/2] chore: Update the OpenSSH version for Windows Server Core 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 6fcc5177..033506f3 100644 --- a/windows/windowsservercore/Dockerfile +++ b/windows/windowsservercore/Dockerfile @@ -83,7 +83,7 @@ RUN $CurrentPath = (Get-Itemproperty -path 'hklm:\system\currentcontrolset\contr & C:\mingit\cmd\git.exe lfs install # Setup SSH server -ARG OPENSSH_VERSION=v9.5.0.0p1-Beta +ARG OPENSSH_VERSION=v9.8.1.0p1-Preview RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; ` $url = 'https://github.com/PowerShell/Win32-OpenSSH/releases/download/{0}/OpenSSH-Win64.zip' -f $env:OPENSSH_VERSION ; ` Write-Host "Retrieving $url..." ; ` From 947b6d2206112288849020cbb48f0a18b6d1077b Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 02:45:30 +0000 Subject: [PATCH 2/2] chore: Update the OpenSSH 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 8396214c..00aeabba 100644 --- a/windows/nanoserver/Dockerfile +++ b/windows/nanoserver/Dockerfile @@ -95,7 +95,7 @@ ENV JENKINS_AGENT_USER ${user} ENV JENKINS_AGENT_WORK ${JENKINS_AGENT_WORK} # Setup SSH server -ARG OPENSSH_VERSION=v9.5.0.0p1-Beta +ARG OPENSSH_VERSION=v9.8.1.0p1-Preview RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; ` $url = 'https://github.com/PowerShell/Win32-OpenSSH/releases/download/{0}/OpenSSH-Win64.zip' -f $env:OPENSSH_VERSION ; ` Write-Host "Retrieving $url..." ; `