diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a45906d..19ff44a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,8 +19,11 @@ jobs: rustup update - name: Build run: | - cargo update - cargo build --release --all-features + # Disable `cargo update` until a new version of rustsec is being released + # See: https://github.com/rustsec/rustsec/issues/1130 + # cargo update + # cargo build --release --all-features + cargo build --release --all-features --locked - name: Check formatting run: | cargo fmt -- --check