From 98e76b88c50d167be0c0c89a0a1654c57c64c2cb Mon Sep 17 00:00:00 2001 From: V0ldek Date: Wed, 4 Oct 2023 02:25:26 +0100 Subject: [PATCH] chore(ci): work around breaking MinGW release MinGW 13.1.0 broke stuff in the setup-mingw step. Pinning to 12.2.0 is a temporary workaround. See https://github.com/egor-tensin/setup-mingw/issues/14 for details. --- .github/workflows/rust.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a68a246c..ca26ea39 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -97,6 +97,7 @@ jobs: uses: egor-tensin/setup-mingw@84c781b557efd538dec66bde06988d81cd3138cf # v2.2.0 with: platform: ${{ matrix.needs-mingw }} + version: 12.2.0 # https://github.com/egor-tensin/setup-mingw/issues/14 - name: Add MinGW to PATH if: matrix.needs-mingw != '' && steps.cache-restore-mingw.outputs.cache-hit == 'true' run: echo "C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw32\bin" >> $env:GITHUB_PATH