Skip to content

Commit

Permalink
.github: replace actions-rs/toolchain with dtolnay/rust-toolchain
Browse files Browse the repository at this point in the history
action-rs is deprecated and no longer maintained. Thus, move away from
action-rs/toolchain to dtolnay/rust-toolchain which is a well maintained
project.

Signed-off-by: Jinank Jain <[email protected]>
  • Loading branch information
jinankjain authored and russell-islam committed Apr 12, 2024
1 parent 58a2e9c commit 9eefa3c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ jobs:
- name: Code checkout
uses: actions/checkout@v4
- name: Install Rust toolchain (${{ matrix.rust }})
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
override: true
components: rustfmt, clippy

- name: Formatting (rustfmt)
Expand Down

0 comments on commit 9eefa3c

Please sign in to comment.