diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6231cbc..7589f3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 diff --git a/.github/workflows/security_audit_cron.yml b/.github/workflows/security_audit_cron.yml index fd45d18..3c3c5ac 100644 --- a/.github/workflows/security_audit_cron.yml +++ b/.github/workflows/security_audit_cron.yml @@ -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 @@ -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