diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b79105..5200dcf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,10 @@ jobs: - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.rust }} + - name: Pin versions for MSRV + if: "${{ matrix.rust == '1.64.0' }}" + run: | + cargo update -p regex --precise 1.8.4 - name: Build run: cargo build --verbose - name: Run tests