Skip to content

Commit a385702

Browse files
committed
ci: tacd: use run: cargo deny instead of EmbarkStudios/cargo-deny-action
Other than the actions-rs actions the cargo-deny actionis actually actively maintained, but replacing it with a simple `cargo deny` call removes our last non-GitHub provided action dependency and makes it a bit easier to determine what is actually happening in the action, should one e.g. want to reproduce it locally. Signed-off-by: Leonard Göhrs <l.goehrs@pengutronix.de>
1 parent eacddd1 commit a385702

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/tacd-daemon.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ jobs:
6262
runs-on: ubuntu-latest
6363
steps:
6464
- uses: actions/checkout@v4
65-
- uses: EmbarkStudios/cargo-deny-action@v1
65+
- run: rustup toolchain install stable
66+
- run: cargo install --locked cargo-deny
67+
- run: cargo deny
6668

6769
test:
6870
name: cargo test

0 commit comments

Comments
 (0)