Skip to content

Commit 32d9a3c

Browse files
committed
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
1 parent 2932139 commit 32d9a3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- name: Install OpenSSL for Windows
6464
if: runner.os == 'Windows'
6565
run: |
66-
choco install openssl -f -y
66+
choco install openssl --version=3.3.1 -f -y
6767
6868
- name: Install OpenSSL for MacOS
6969
if: runner.os == 'MacOs'

0 commit comments

Comments
 (0)