From ad6db4766425ed011ff50480ff2f58f1cb506bc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Urban?= Date: Wed, 23 Oct 2024 13:31:41 +0200 Subject: [PATCH] chore: switch to actively maintained rust action --- .github/workflows/push.yml | 4 +--- .github/workflows/release-prod.yml | 4 +--- .github/workflows/release.yml | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 532e422..c4b6077 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -32,12 +32,10 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@master with: toolchain: stable target: ${{ matrix.target }} - profile: minimal - override: true - name: Build run: cargo build --release --target ${{ matrix.target }} - name: Upload artifact diff --git a/.github/workflows/release-prod.yml b/.github/workflows/release-prod.yml index beb8c7e..d437a22 100644 --- a/.github/workflows/release-prod.yml +++ b/.github/workflows/release-prod.yml @@ -24,12 +24,10 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@master with: toolchain: stable target: ${{ matrix.target }} - profile: minimal - override: true - name: Install cargo-edit run: | cargo install cargo-edit diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index caeba5c..8dfb621 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,12 +24,10 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@master with: toolchain: stable target: ${{ matrix.target }} - profile: minimal - override: true - name: Install cargo-edit run: | cargo install cargo-edit