Skip to content

Commit

Permalink
CI: specify specific version of openssl in choco command
Browse files Browse the repository at this point in the history
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
  • Loading branch information
fruch committed Jun 6, 2024
1 parent 2932139 commit 32d9a3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 32d9a3c

Please sign in to comment.