diff options
author | Patrick Lewis <pat@lo5t.com> | 2022-08-13 19:31:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-13 22:31:26 -0400 |
commit | 9fa35180eac4dc49ed725c5715770556f8301fe1 (patch) | |
tree | 132e4d5d451d668aac2132379536ba8a62c01796 /.github/workflows/windows_build.yml | |
parent | 4952e6032f9fc8981df48181ed3b2e431f8e5575 (diff) |
fix(CI): pin boost version (#12730)
* fix(CI): pin boost version
Diffstat (limited to '.github/workflows/windows_build.yml')
-rw-r--r-- | .github/workflows/windows_build.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 6fb55ccc39..a57f6d5321 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -24,7 +24,9 @@ jobs: steps: - uses: actions/checkout@v2 - name: Configure OS - run: choco install --no-progress openssl boost-msvc-14.3 + run: | + choco install --no-progress openssl + choco install --no-progress boost-msvc-14.3 --version=1.79.0 - name: Build shell: bash run: | |