Skip to content

Commit

Permalink
fix binstall
Browse files Browse the repository at this point in the history
  • Loading branch information
sycured committed Jul 30, 2023
1 parent 714b9e3 commit 3d6752d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ jobs:
rustup self update
rustup update --no-self-update
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
cargo binstall -y cargo-quickinstall
cargo binstall -y --force cargo-quickinstall
- name: Audit check
run: |
cargo binstall -y cargo-audit
cargo binstall -y --force cargo-audit
cargo audit --json > $HOME/audit.json || exit 0
- name: Check a local package and all of its dependencies for errors
Expand All @@ -87,12 +87,12 @@ jobs:

- name: Outdated check
run: |
cargo binstall -y cargo-outdated
cargo binstall -y --force cargo-outdated
cargo outdated --depth 1 --format json > $HOME/outdated.json
- name: Udeps check
run: |
cargo binstall -y cargo-udeps
cargo binstall -y --force cargo-udeps
cargo +nightly udeps --quiet --workspace --all-features --all-targets --output json > $HOME/udeps.json || exit 0
- name: Clippy check
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/security_audit_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
rustup self update
rustup update --no-self-update
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
cargo binstall -y cargo-quickinstall
cargo binstall -y --force cargo-quickinstall
- name: Audit check
run: |
cargo binstall -y cargo-audit
cargo binstall -y --force cargo-audit
cargo audit --json > $HOME/audit.json || exit 0
- name: Check a local package and all of its dependencies for errors
Expand All @@ -58,12 +58,12 @@ jobs:

- name: Outdated check
run: |
cargo binstall -y cargo-outdated
cargo binstall -y --force cargo-outdated
cargo outdated --depth 1 --format json > $HOME/outdated.json
- name: Udeps check
run: |
cargo binstall -y cargo-udeps
cargo binstall -y --force cargo-udeps
cargo +nightly udeps --quiet --workspace --all-features --all-targets --output json > $HOME/udeps.json || exit 0
- name: Clippy check
Expand Down

0 comments on commit 3d6752d

Please sign in to comment.