Commit 8646f58
committed
Use lockfile when installing cargo-wix in CI
When installing a package using `cargo install`, by default it ignores
the lockfile for that package and installs the latest relevant
dependency versions. This can be overridden by using the `--locked`
flag.
Using an unlocked install is causing issues in CI, because we have our
Rust version pinned to a version that is older than the MSRV for some of
`cargo-wix`'s dependencies. Switching to a locked install means that the
dependency versions will be repeatable and so we shouldn't have issues
with Rust version mismatches.1 parent b5bfec7 commit 8646f58
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | | - | |
| 87 | + | |
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
| |||
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
117 | | - | |
| 117 | + | |
118 | 118 | | |
119 | 119 | | |
120 | 120 | | |
| |||
0 commit comments