From a804f57fc685b61ded06fac766fa10451d5d3373 Mon Sep 17 00:00:00 2001 From: Daniel Jankowski Date: Tue, 11 Jun 2024 09:16:04 +0200 Subject: [PATCH] chore(ci): update to maintained actions --- .github/workflows/lint.yml | 7 +++---- .github/workflows/release.yml | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 22f3033..f2150b0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@stable with: toolchain: '1.76.0' profile: minimal @@ -21,7 +21,7 @@ jobs: components: clippy - name: Run Clippy - uses: actions-rs/clippy-check@v1 + uses: clechasseur/rs-clippy-check@v3 with: token: ${{ secrets.GITHUB_TOKEN }} args: --all-features --all-targets @@ -33,13 +33,12 @@ jobs: - uses: jcbhmr/setup-wasmtime@v2 - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@stable with: toolchain: '1.76.0' profile: minimal override: true target: wasm32-wasi - components: clippy - name: Install cargo wasi run: cargo install cargo-wasi diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0da680d..a842c61 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,10 +16,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - fetch-depth: 0 + fetch-tags: true - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@stable with: toolchain: '1.76.0' profile: minimal