Skip to content

Commit 9ed9db8

Browse files
committed
Try and fix build - 2
1 parent fef610e commit 9ed9db8

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222

2323
- name: Cache cargo
2424
uses: Swatinem/rust-cache@v2
25+
with:
26+
cache-directories: ~/.cargo/bin
2527

2628
- name: Shellcheck
2729
uses: ludeeus/action-shellcheck@2.0.0

ci.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ set -xeu -o pipefail
44

55
# Install cargo-binstall if not present
66
if ! command -v cargo-binstall &>/dev/null; then
7-
cargo install cargo-binstall@1.10.17
7+
cargo install --locked cargo-binstall@1.10.0
88
fi
99

1010
# Install CI tools with pinned versions if not present
1111
if ! command -v cargo-audit &>/dev/null; then
12-
cargo binstall -y cargo-audit@0.22.0 cargo-deny@0.19.0 cargo-machete@0.9.1 cargo-bloat@0.12.1
12+
cargo binstall -y --force cargo-audit@0.22.0 cargo-deny@0.19.0 cargo-machete@0.9.1 cargo-bloat@0.12.1
1313
fi
1414

1515
# Format check

0 commit comments

Comments
 (0)