From 8e15a4f5b86106537a7c97dd0a074c5c779a8bcf Mon Sep 17 00:00:00 2001 From: TheTank20 Date: Thu, 10 Aug 2023 12:07:39 -0500 Subject: [PATCH] Update OpenSSL to 3.1.2 --- .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 2a317fb..27a3d67 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -35,11 +35,11 @@ jobs: with: components: Microsoft.VisualStudio.Component.WinXP - - name: Download And Install 32-bit OpenSSL 3.1.1 + - name: Download And Install 32-bit OpenSSL 3.1.2 run: | $installDir = "$Env:ProgramFiles\OpenSSL" - $installerURL = "https://slproweb.com/download/Win32OpenSSL-3_1_1.exe" - $installerName = "Win32OpenSSL-3_1_1.exe" + $installerURL = "https://slproweb.com/download/Win32OpenSSL-3_1_2.exe" + $installerName = "Win32OpenSSL-3_1_2.exe" $installerPath = Join-Path -Path "${env:Temp}" -ChildPath "$installerName" (New-Object System.Net.WebClient).DownloadFile($installerURL, $installerPath) @@ -80,11 +80,11 @@ jobs: with: components: Microsoft.VisualStudio.Component.WinXP - - name: Download And Install 64-bit OpenSSL 3.1.1 + - name: Download And Install 64-bit OpenSSL 3.1.2 run: | $installDir = "$Env:ProgramFiles\OpenSSL" - $installerURL = "https://slproweb.com/download/Win64OpenSSL-3_1_1.exe" - $installerName = "Win64OpenSSL-3_1_1.exe" + $installerURL = "https://slproweb.com/download/Win64OpenSSL-3_1_2.exe" + $installerName = "Win64OpenSSL-3_1_2.exe" $installerPath = Join-Path -Path "${env:Temp}" -ChildPath "$installerName" (New-Object System.Net.WebClient).DownloadFile($installerURL, $installerPath)