Skip to content

Commit d6ccfb2

Browse files
authored
ci: pin OpenSSL to 3.1.1 on Windows (#358)
1 parent 70a5050 commit d6ccfb2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/install-boost/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
id: boost-download
3232
shell: bash
3333
run: |
34-
choco install boost-msvc-14.3 --version 1.81.0 -y
34+
choco install boost-msvc-14.3 --version 1.81.0 -y --no-progress
3535
echo "BOOST_ROOT=C:\local\boost_1_81_0" >> $GITHUB_OUTPUT
3636
3737
- name: Install boost using homebrew

.github/actions/install-openssl/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
if: runner.os == 'Windows'
3333
shell: bash
3434
run: |
35-
choco upgrade openssl --no-progress
35+
choco install openssl --version 3.1.1 -y --no-progress
3636
if [ -d "C:\Program Files\OpenSSL-Win64" ]; then
3737
echo "OPENSSL_ROOT_DIR=C:\Program Files\OpenSSL-Win64" >> $GITHUB_OUTPUT
3838
else

0 commit comments

Comments
 (0)