Skip to content

Commit 376be2f

Browse files
committed
fix(ci): Use locked version of llvm-cov
A transitive dependency of llvm-cov was published 2025-10-23 that is incompatible with our current Rust version, 1.87. This adds the `--locked` flag so that the tool can successfully install.
1 parent 0364659 commit 376be2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/rust-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
9898

9999
- name: Install cargo-llvm-cov
100-
run: cargo install cargo-llvm-cov --version 0.5.38
100+
run: cargo install cargo-llvm-cov --version 0.5.38 --locked
101101

102102
- name: Generate coverage
103103
run: cargo llvm-cov --all-features --lcov --output-path lcov.info --ignore-filename-regex "crates/bitwarden-api-"

0 commit comments

Comments
 (0)