Skip to content

Commit

Permalink
Fixed CI failure due to cargo-deny install failure
Browse files Browse the repository at this point in the history
Description:
cargo install cargo-deny was failing due to issue in downstream depndency
`funty` and `bitvec`.
cargo-deny issue [#331](EmbarkStudios/cargo-deny#331)
This change adds `--locked` to `cargo-deny` install so exact version specified in
`Cargo.lock` of `cargo-deny` is used to fetch dependency instead of skipping
minor version.
  • Loading branch information
srgothi92 committed Feb 17, 2021
1 parent 907079d commit 966068d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/updater-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
restore-keys: |
${{ hashFiles('.github/cache-bust') }}-
- run: rustup update stable && cargo install cargo-deny
- run: rustup update stable && cargo install cargo-deny --locked
- run: make ci

image:
Expand Down

0 comments on commit 966068d

Please sign in to comment.