From abc45a3781f9ed905ff7ca97c3818f0227ce8f8e Mon Sep 17 00:00:00 2001 From: Piotr Sikora Date: Sun, 27 Oct 2024 13:02:54 -0400 Subject: [PATCH] Disable audit and outdated checks on nightly. (#281) Neither cargo audit nor cargo outdated tools support Cargo lockfile v4 yet, so those checks are always failing. Signed-off-by: Piotr Sikora --- .github/workflows/rust.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e17f91d..33a62a1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -395,11 +395,13 @@ jobs: - name: Format (manifest) run: cargo verify-project - - name: Run cargo audit - run: cargo audit + # TODO: Re-enable once cargo audit supports Cargo lockfile v4. + #- name: Run cargo audit + # run: cargo audit - - name: Run cargo outdated - run: cargo outdated --root-deps-only --exit-code 1 + # TODO: Re-enable once cargo outdated supports Cargo lockfile v4. + #- name: Run cargo outdated + # run: cargo outdated --root-deps-only --exit-code 1 - name: Rename .wasm to match expected filename run: |