From 32d9a3cccdfe71a425ecd71e81f45a98fe6b1786 Mon Sep 17 00:00:00 2001 From: Israel Fruchter Date: Thu, 6 Jun 2024 01:18:12 +0300 Subject: [PATCH] CI: specify specific version of openssl in choco command for some reason we are trying to download an openssl version which doesn't exist anymore on the mirror (3.3.0) and still something points to it as the lastest version, while there a new version (3.3.1) trying to hardcode the version into something that works --- .github/workflows/build-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-push.yml b/.github/workflows/build-push.yml index 9d33f6d166..a31acbed6f 100644 --- a/.github/workflows/build-push.yml +++ b/.github/workflows/build-push.yml @@ -63,7 +63,7 @@ jobs: - name: Install OpenSSL for Windows if: runner.os == 'Windows' run: | - choco install openssl -f -y + choco install openssl --version=3.3.1 -f -y - name: Install OpenSSL for MacOS if: runner.os == 'MacOs'