From 735c57e3e8b176c8f9d028f4ca3472af6657c2c9 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 25 Apr 2022 17:21:17 +0100 Subject: [PATCH] fix ci --- .github/workflows/ci.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc82ab18..e87c4205 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,14 @@ jobs: command: install args: cargo-hack + - name: Generate Cargo.lock + uses: actions-rs/cargo@v1 + with: { command: generate-lockfile } + + - name: Tweak lockfile + run: | + cargo update -p=native-tls --precise=0.2.8 + - name: check lib if: > matrix.target.os != 'ubuntu-latest' @@ -142,10 +150,9 @@ jobs: with: { command: generate-lockfile } - name: Tweak lockfile - uses: actions-rs/cargo@v1 - with: - command: update - args: -p=rustls --precise=0.20.2 + run: | + cargo update -p=rustls --precise=0.20.2 + cargo update -p=native-tls --precise=0.2.8 - name: tests run: |