From a9fe093b75d1badef299d2ebd847ba00799f6891 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Spie=C3=9F?= Date: Wed, 21 Aug 2024 11:19:47 +0200 Subject: [PATCH] Use alternative rust toolchain action --- .github/workflows/publish.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8cf2347..1f0faf0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,12 +40,10 @@ jobs: apt-get upgrade -y apt-get install -y curl gcc openjdk-8-jdk-headless - name: Install Rust toolchain - uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1 + uses: dtolnay/rust-toolchain@stable with: - profile: minimal toolchain: stable - override: true - target: ${{ matrix.target }} + targets: ${{ matrix.target }} - name: Install linker dependencies run: ${{ matrix.deps }} if: ${{ matrix.deps != '' }}