From 63da834ce46c7b7d92b06bb240f814f875850880 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Tue, 25 Jun 2024 01:58:20 +0200 Subject: [PATCH] ci: Fix msrv check (#10118) * ci: Fix os_pipe precise version * reading is hard * downgrade syn * more specific * WHO DO YOU CALL UNSTABLE * i just want to go to bed --- .github/workflows/covector-version-or-publish-v1.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/covector-version-or-publish-v1.yml b/.github/workflows/covector-version-or-publish-v1.yml index 0762a6834e2f..16ea5078a5be 100644 --- a/.github/workflows/covector-version-or-publish-v1.yml +++ b/.github/workflows/covector-version-or-publish-v1.yml @@ -8,6 +8,7 @@ on: push: branches: - 1.x + - v1/msrv-check jobs: msrv-list: @@ -107,7 +108,10 @@ jobs: cargo update -p tokio-test --precise 0.4.3 cargo update -p tokio-stream --precise 0.1.14 cargo update -p tokio-util --precise 0.7.10 - cargo update -p os_pipe --precise 0.1.15 + cargo update -p os_pipe --precise 1.1.5 + cargo update -p syn:2.0.68 --precise 2.0.67 + cargo update -p derive_more --precise 0.99.17 + cargo update -p native-tls --precise 0.2.11 - name: test build run: cargo check --target ${{ matrix.platform.target }} --features tracing,compression,wry,linux-protocol-headers,isolation,custom-protocol,api-all,cli,updater,system-tray,windows7-compat,http-multipart,test @@ -115,6 +119,7 @@ jobs: run-integration-tests: runs-on: ${{ matrix.platform }} needs: msrv-list + if: github.ref == 'refs/heads/1.x' strategy: fail-fast: false