From 2c125fdcce83602bd3837ef97400681d9104f4a6 Mon Sep 17 00:00:00 2001 From: daxpedda Date: Wed, 20 Dec 2023 10:36:24 +0100 Subject: [PATCH] Name all steps --- .github/workflows/audit.yml | 3 ++- .github/workflows/format.yml | 3 ++- .github/workflows/lint.yml | 2 +- .github/workflows/spellcheck.yml | 6 ++++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 2c9278b..0aa8444 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -21,7 +21,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - uses: taiki-e/install-action@v2 + - name: Install `cargo-audit` + uses: taiki-e/install-action@v2 with: tool: cargo-audit - name: Run Audit diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index e5e16ad..8c6a8af 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -36,7 +36,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - uses: taiki-e/install-action@v2 + - name: Install Taplo + uses: taiki-e/install-action@v2 with: tool: taplo-cli - name: Run Taplo diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3b9bcff..291dc2d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -35,7 +35,7 @@ jobs: uses: actions/checkout@v4 - name: Install Rust run: | - rustup toolchain install ${{ matrix.rust.version }} --profile minimal --component clippy${{ matrix.rust.component }} --target ${{ matrix.target }} + rustup toolchain install ${{ matrix.rust.version }} --profile minimal --component clippy${{ matrix.rust.component }} --allow-downgrade --target ${{ matrix.target }} rustup default ${{ matrix.rust.version }} - name: Run Clippy env: diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index 6f682ad..65a402b 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -21,7 +21,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - uses: taiki-e/install-action@v2 + - name: Install `cargo-spellcheck` + uses: taiki-e/install-action@v2 with: tool: cargo-spellcheck - name: Run Spellcheck @@ -38,7 +39,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - uses: taiki-e/install-action@v2 + - name: Install Typos + uses: taiki-e/install-action@v2 with: tool: typos-cli - name: Run Typos