From 8ec60bf3965473910b919d6f68032988acd7a06e Mon Sep 17 00:00:00 2001 From: TheTank20 Date: Sat, 13 Apr 2024 14:45:46 +0000 Subject: [PATCH] Update windows.yml --- .github/workflows/windows.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index af298e6..e25aa78 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.4 + - name: Download And Install 32-bit OpenSSL 3.1.5 run: | $installDir = "$Env:ProgramFiles\OpenSSL" $installerURL = "https://slproweb.com/download/Win32OpenSSL-3_1_5.exe" - $installerName = "Win32OpenSSL-3_1_4.exe" + $installerName = "Win32OpenSSL-3_1_5.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.4 + - name: Download And Install 64-bit OpenSSL 3.1.5 run: | $installDir = "$Env:ProgramFiles\OpenSSL" $installerURL = "https://slproweb.com/download/Win64OpenSSL-3_1_5.exe" - $installerName = "Win64OpenSSL-3_1_4.exe" + $installerName = "Win64OpenSSL-3_1_5.exe" $installerPath = Join-Path -Path "${env:Temp}" -ChildPath "$installerName" (New-Object System.Net.WebClient).DownloadFile($installerURL, $installerPath)