Skip to content

Commit 074afc5

Browse files
committed
Allow lockfiles to update
1 parent f19969b commit 074afc5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
with:
2525
sweep-cache: true
2626
- run: |
27-
cargo test --locked --workspace --all-features --all-targets
27+
cargo test --workspace --all-features --all-targets
2828
# Workaround for https://github.com/rust-lang/cargo/issues/6669
29-
cargo test --locked --workspace --all-features --doc
29+
cargo test --workspace --all-features --doc
3030
3131
clippy:
3232
name: Clippy
@@ -41,7 +41,7 @@ jobs:
4141
- uses: Leafwing-Studios/cargo-cache@v2
4242
with:
4343
sweep-cache: true
44-
- run: cargo clippy --locked --workspace --all-targets --all-features -- --deny warnings
44+
- run: cargo clippy --workspace --all-targets --all-features -- --deny warnings
4545

4646
format:
4747
name: Format
@@ -65,4 +65,4 @@ jobs:
6565
- uses: Leafwing-Studios/cargo-cache@v2
6666
with:
6767
sweep-cache: true
68-
- run: cargo doc --locked --workspace --all-features --document-private-items --no-deps
68+
- run: cargo doc --workspace --all-features --document-private-items --no-deps

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ jobs:
103103
- if: ${{ matrix.platform == 'web' }}
104104
run: |
105105
cargo binstall --no-confirm trunk wasm-bindgen-cli wasm-opt
106-
trunk build --locked --release --dist '${{ env.app }}'
106+
trunk build --release --dist '${{ env.app }}'
107107
- if: ${{ matrix.platform != 'web' }}
108108
run: |
109109
for target in ${{ matrix.targets }}; do
110-
cargo build --locked --profile='${{ matrix.profile }}' --target="${target}" --no-default-features --features='${{ matrix.features }}'
110+
cargo build --profile='${{ matrix.profile }}' --target="${target}" --no-default-features --features='${{ matrix.features }}'
111111
mv target/"${target}"/'${{ matrix.profile }}/${{ env.cargo_build_binary_name }}${{ matrix.binary_ext }}' tmp/binary/"${target}"'${{ matrix.binary_ext }}'
112112
done
113113
- if: ${{ matrix.platform != 'web' }}

0 commit comments

Comments
 (0)