From d9c0fca40767d5083111154f0b98b89e9b04aa3b Mon Sep 17 00:00:00 2001 From: Maybe Waffle Date: Fri, 15 Mar 2024 17:25:11 +0100 Subject: [PATCH] Stop downgrading `atomic-write-file` in CI (we don't depend on it anymore) --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6809098..ed188e39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,10 +118,12 @@ jobs: # MSRV CI specifically instead. This allows as to # 1. Not update MSRV unless we really need to # 2. Test newest (or at least newer) versions of crates in CI + # + # Example command: `cargo update -p atomic-write-file@0.1.3 --precise 0.1.2` - name: Downgrade deps for MSRV if: ${{ matrix.rust == 'msrv' }} run: | - cargo update -p atomic-write-file@0.1.3 --precise 0.1.2 + exit 0 # NB. Don't test (build) examples so we can use non-msrv features in them (--tests/--doc)