From 80786f692cbb20863d6d51deebaee81e1e8bc953 Mon Sep 17 00:00:00 2001 From: deep-soft Date: Thu, 23 Nov 2023 21:11:45 +0200 Subject: [PATCH] fix bridge.yml (dtolnay/rust-toolchain) toolchain uses: dtolnay/rust-toolchain --- .github/workflows/bridge.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bridge.yml b/.github/workflows/bridge.yml index d8cd17f58..ba978df25 100644 --- a/.github/workflows/bridge.yml +++ b/.github/workflows/bridge.yml @@ -1,6 +1,6 @@ # This yaml shares the build bridge steps with ci and nightly. name: Build flutter-rust-bridge -# 2023-04-19 15:48:00+00:00 +# 2023-11-23 18:00:00+00:00 on: workflow_call: @@ -47,12 +47,11 @@ jobs: wget - name: Install Rust toolchain - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@v1 with: toolchain: stable - target: ${{ matrix.job.target }} - override: true - profile: minimal # minimal component installation (ie, no documentation) + targets: ${{ matrix.job.target }} + components: '' - uses: Swatinem/rust-cache@v2 with: