From cd6bbd0e67af68034278d301d93cdaef4f0f328f Mon Sep 17 00:00:00 2001 From: Casey Waldren Date: Thu, 24 Oct 2024 10:56:45 -0700 Subject: [PATCH] fix(deps): build with openssl 3.4.0 on windows (#462) This bumps OpenSSL from 3.1.1 to 3.4.0 on Windows ([the latest, released two days ago](https://github.com/openssl/openssl/releases/tag/openssl-3.4.0)). This will resolve outstanding CVEs filed against 3.1.1. --- .github/actions/install-openssl/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install-openssl/action.yml b/.github/actions/install-openssl/action.yml index e27029192..6020cbcb5 100644 --- a/.github/actions/install-openssl/action.yml +++ b/.github/actions/install-openssl/action.yml @@ -32,7 +32,7 @@ runs: if: runner.os == 'Windows' shell: bash run: | - choco install openssl --version 3.1.1 -y --no-progress + choco install openssl --version 3.4.0 -y --no-progress if [ -d "C:\Program Files\OpenSSL-Win64" ]; then echo "OPENSSL_ROOT_DIR=C:\Program Files\OpenSSL-Win64" >> $GITHUB_OUTPUT else