Skip to content

Commit

Permalink
fix(ci): use install-action instead of cargo-binstall (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xaatif authored Oct 1, 2024
1 parent 41f5744 commit 07bdbd0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/actions/rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ runs:
using: composite
steps:
- uses: actions-rust-lang/setup-rust-toolchain@v1
- uses: cargo-bins/[email protected]
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
8 changes: 6 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/rust
- run: cargo binstall cargo-udeps
- uses: taiki-e/install-action@v2
with:
tool: cargo-udeps
- run: cargo udeps --quiet
- run: cargo udeps --quiet --tests --benches --examples
rustdoc:
Expand All @@ -48,5 +50,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/rust
- run: cargo binstall taplo-cli
- uses: taiki-e/install-action@v2
with:
tool: taplo-cli
- run: taplo fmt --check

0 comments on commit 07bdbd0

Please sign in to comment.