From 3a47bff9ff15fd1d38f18356c02dc01dad72018e Mon Sep 17 00:00:00 2001 From: Henrik Friedrichsen Date: Mon, 4 Mar 2024 21:54:24 +0100 Subject: [PATCH] fix: Set toolchain target correctly --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 8df43264a..bf0355864 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -55,7 +55,7 @@ jobs: - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable with: - target: ${{ matrix.target }} + targets: ${{ matrix.target }} toolchain: stable - name: Install macOS dependencies if: matrix.os == 'macos-latest' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62c8ea53f..f246ad200 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable with: - target: ${{ matrix.target }} + targets: ${{ matrix.target }} components: clippy, rustfmt - name: Install macOS dependencies if: matrix.os == 'macos-latest'