Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-rust-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7

- name: Install cargo-release
run: cargo install cargo-release
run: cargo install cargo-release --version 0.25.20 --locked

- name: Cargo release dry run
run: cargo-release release publish --no-publish -p bitwarden-api-api -p bitwarden-api-identity -p bitwarden
2 changes: 1 addition & 1 deletion .github/workflows/build-wasm-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
key: wasm-cargo-cache

- name: Install wasm-bindgen-cli
run: cargo install wasm-bindgen-cli --version 0.2.100
run: cargo install wasm-bindgen-cli --version 0.2.100 --locked

- name: Build
run: ./build.sh -r ${{ matrix.license_type.build_flags }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-rust-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7

- name: Install cargo-release
run: cargo install cargo-release
run: cargo install cargo-release --version 0.25.20 --locked

- name: Create GitHub deployment
if: ${{ inputs.release_type != 'Dry Run' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7

- name: Install wasm-bindgen-cli
run: cargo install wasm-bindgen-cli --version 0.2.100
run: cargo install wasm-bindgen-cli --version 0.2.100 --locked

- name: Test WASM
run: cargo test --target wasm32-unknown-unknown -p bitwarden-wasm-internal -p bitwarden-threading -p bitwarden-error -p bitwarden-uuid --all-features
Expand All @@ -97,7 +97,7 @@ jobs:
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7

- name: Install cargo-llvm-cov
run: cargo install cargo-llvm-cov --version 0.5.38
run: cargo install cargo-llvm-cov --version 0.5.38 --locked

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