Skip to content

Commit 852feb9

Browse files
authored
Replace unmaintained actions-rs/cargo action in CI workflow (#455)
Basically all of the `actions-rs/*` actions are unmaintained. See <actions-rs/toolchain#216> for more information. Due to their age they generate several warnings in CI runs. To get rid of those warnings the occurrences of `actions-rs/cargo` are replaced by direct invocations of `cargo`.
1 parent b059d4b commit 852feb9

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/workspace.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,4 @@ jobs:
3434
components: rustfmt
3535

3636
- name: Run cargo fmt
37-
uses: actions-rs/cargo@v1
38-
with:
39-
command: fmt
40-
args: --all -- --check
37+
run: cargo fmt --all -- --check

0 commit comments

Comments
 (0)