We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54e07a6 commit 3e810d0Copy full SHA for 3e810d0
.github/workflows/verify.yml
@@ -62,10 +62,11 @@ jobs:
62
63
# required only if you set `languages.rust.list_dependencies_backend.kind` to `"cargo-udeps"`
64
- name: Install cargo-udeps for Rust
65
- uses: actions-rs/[email protected]
66
- with:
67
- crate: cargo-udeps
68
- use-tool-cache: true
+ run: |
+ version="$(curl https://crates.io/api/v1/crates/cargo-udeps | jq -r '.crate.max_version')"
+ wget "https://github.com/est31/cargo-udeps/releases/download/v$version/cargo-udeps-v$version-x86_64-unknown-linux-gnu.tar.gz"
+ tar xzvf "./cargo-udeps-v$version-x86_64-unknown-linux-gnu.tar.gz" -C /tmp/
69
+ echo "/tmp/cargo-udeps-v$version-x86_64-unknown-linux-gnu" >> $GITHUB_PATH
70
71
- name: Run tests
72
env:
0 commit comments