Skip to content

Commit 2c125fd

Browse files
committed
Name all steps
1 parent 1700e02 commit 2c125fd

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/audit.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v4
24-
- uses: taiki-e/install-action@v2
24+
- name: Install `cargo-audit`
25+
uses: taiki-e/install-action@v2
2526
with:
2627
tool: cargo-audit
2728
- name: Run Audit

.github/workflows/format.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ jobs:
3636
steps:
3737
- name: Checkout
3838
uses: actions/checkout@v4
39-
- uses: taiki-e/install-action@v2
39+
- name: Install Taplo
40+
uses: taiki-e/install-action@v2
4041
with:
4142
tool: taplo-cli
4243
- name: Run Taplo

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/checkout@v4
3636
- name: Install Rust
3737
run: |
38-
rustup toolchain install ${{ matrix.rust.version }} --profile minimal --component clippy${{ matrix.rust.component }} --target ${{ matrix.target }}
38+
rustup toolchain install ${{ matrix.rust.version }} --profile minimal --component clippy${{ matrix.rust.component }} --allow-downgrade --target ${{ matrix.target }}
3939
rustup default ${{ matrix.rust.version }}
4040
- name: Run Clippy
4141
env:

.github/workflows/spellcheck.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v4
24-
- uses: taiki-e/install-action@v2
24+
- name: Install `cargo-spellcheck`
25+
uses: taiki-e/install-action@v2
2526
with:
2627
tool: cargo-spellcheck
2728
- name: Run Spellcheck
@@ -38,7 +39,8 @@ jobs:
3839
steps:
3940
- name: Checkout
4041
uses: actions/checkout@v4
41-
- uses: taiki-e/install-action@v2
42+
- name: Install Typos
43+
uses: taiki-e/install-action@v2
4244
with:
4345
tool: typos-cli
4446
- name: Run Typos

0 commit comments

Comments
 (0)