From 4004e17d4cb53e6fccd8a93b2cc8e28ee268c411 Mon Sep 17 00:00:00 2001 From: Jon Simantov Date: Tue, 25 Mar 2025 11:25:37 -0700 Subject: [PATCH 1/2] Update openSSL installed version on Windows to 3.3.2. --- scripts/gha/install_prereqs_desktop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gha/install_prereqs_desktop.py b/scripts/gha/install_prereqs_desktop.py index 65c01bc4f2..67682d6c78 100644 --- a/scripts/gha/install_prereqs_desktop.py +++ b/scripts/gha/install_prereqs_desktop.py @@ -63,7 +63,7 @@ def main(): # brew install openssl utils.run_command(['brew', 'install', 'openssl']) elif utils.is_windows_os(): - utils.run_command(['choco', 'install', 'openssl', '-r', '--version', '3.1.1']) + utils.run_command(['choco', 'install', 'openssl', '-r', '--version', '3.3.2']) # Install ccache on linux/mac if its not installed already if not utils.is_command_installed('ccache'): From 78ee9a900ab01defd6ea3df310fd1febf7dbf22d Mon Sep 17 00:00:00 2001 From: Jon Simantov Date: Tue, 25 Mar 2025 15:07:43 -0700 Subject: [PATCH 2/2] Update OpenSSL to 3.4.1, which is supported by choco. --- scripts/gha/install_prereqs_desktop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gha/install_prereqs_desktop.py b/scripts/gha/install_prereqs_desktop.py index 67682d6c78..edf0f6723e 100644 --- a/scripts/gha/install_prereqs_desktop.py +++ b/scripts/gha/install_prereqs_desktop.py @@ -63,7 +63,7 @@ def main(): # brew install openssl utils.run_command(['brew', 'install', 'openssl']) elif utils.is_windows_os(): - utils.run_command(['choco', 'install', 'openssl', '-r', '--version', '3.3.2']) + utils.run_command(['choco', 'install', 'openssl', '-r', '--version', '3.4.1']) # Install ccache on linux/mac if its not installed already if not utils.is_command_installed('ccache'):