Skip to content

Commit 3578e9c

Browse files
committed
Lock versions of cargo CLI tools
1 parent f054fe7 commit 3578e9c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build-rust-crates.yml

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

7272
- name: Install cargo-release
73-
run: cargo install cargo-release
73+
run: cargo install cargo-release --version 0.25.20 --locked
7474

7575
- name: Cargo release dry run
7676
run: cargo-release release publish --no-publish -p bitwarden-api-api -p bitwarden-api-identity -p bitwarden

.github/workflows/build-wasm-internal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
key: wasm-cargo-cache
9191

9292
- name: Install wasm-bindgen-cli
93-
run: cargo install wasm-bindgen-cli --version 0.2.100
93+
run: cargo install wasm-bindgen-cli --version 0.2.100 --locked
9494

9595
- name: Build
9696
run: ./build.sh -r ${{ matrix.license_type.build_flags }}

.github/workflows/publish-rust-crates.yml

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

100100
- name: Install cargo-release
101-
run: cargo install cargo-release
101+
run: cargo install cargo-release --version 0.25.20 --locked
102102

103103
- name: Create GitHub deployment
104104
if: ${{ inputs.release_type != 'Dry Run' }}

.github/workflows/rust-test.yml

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

7676
- name: Install wasm-bindgen-cli
77-
run: cargo install wasm-bindgen-cli --version 0.2.100
77+
run: cargo install wasm-bindgen-cli --version 0.2.100 --locked
7878

7979
- name: Test WASM
8080
run: cargo test --target wasm32-unknown-unknown -p bitwarden-wasm-internal -p bitwarden-threading -p bitwarden-error -p bitwarden-uuid --all-features

0 commit comments

Comments
 (0)