From 1548e14169ffe260db809eecf526df2047444058 Mon Sep 17 00:00:00 2001 From: TheTank20 Date: Thu, 14 Dec 2023 00:24:33 +0000 Subject: [PATCH] Update OpenSSL to 3.1.4 Please see GIF attached for what we'll eventually do to OpenSSL. --- .github/workflows/windows.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 99857d4..ba2b81f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -52,11 +52,11 @@ jobs: exit 1 } - - name: Download And Install 32-bit OpenSSL 3.1.3 + - name: Download And Install 32-bit OpenSSL 3.1.4 run: | $installDir = "$Env:ProgramFiles\OpenSSL" - $installerURL = "https://slproweb.com/download/Win32OpenSSL-3_1_3.exe" - $installerName = "Win32OpenSSL-3_1_3.exe" + $installerURL = "https://slproweb.com/download/Win32OpenSSL-3_1_4.exe" + $installerName = "Win32OpenSSL-3_1_4.exe" $installerPath = Join-Path -Path "${env:Temp}" -ChildPath "$installerName" (New-Object System.Net.WebClient).DownloadFile($installerURL, $installerPath) @@ -112,11 +112,11 @@ jobs: exit 1 } - - name: Download And Install 64-bit OpenSSL 3.1.3 + - name: Download And Install 64-bit OpenSSL 3.1.4 run: | $installDir = "$Env:ProgramFiles\OpenSSL" - $installerURL = "https://slproweb.com/download/Win64OpenSSL-3_1_3.exe" - $installerName = "Win64OpenSSL-3_1_3.exe" + $installerURL = "https://slproweb.com/download/Win64OpenSSL-3_1_4.exe" + $installerName = "Win64OpenSSL-3_1_4.exe" $installerPath = Join-Path -Path "${env:Temp}" -ChildPath "$installerName" (New-Object System.Net.WebClient).DownloadFile($installerURL, $installerPath)