From 68b53da14e45ba11234781999da5912d31052566 Mon Sep 17 00:00:00 2001 From: bluss Date: Tue, 20 Aug 2024 18:51:22 +0200 Subject: [PATCH] ci: Pin dependency versions for MSRV --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) 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