From 77a906101bef8cceb74b438427c9db40ecdcf8de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Mon, 29 Jul 2024 13:00:10 -0300 Subject: [PATCH] action: Use newer rust-toolchain action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The older action is not being maintained Signed-off-by: Patrick José Pereira --- .github/workflows/action.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 4b4166f320..4861c696c0 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -10,10 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - uses: actions-rs/toolchain@v1.0.6 + - uses: dtolnay/rust-toolchain@stable with: toolchain: stable - override: true - name: Check Type run: cargo fmt -- --check - name: Check Clippy @@ -28,10 +27,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - uses: actions-rs/toolchain@v1.0.6 + - uses: dtolnay/rust-toolchain@stable with: toolchain: stable - override: true - name: Build docs run: cargo doc - name: Move documentation