Skip to content

Commit 5053f3b

Browse files
PiotrSikoraSwaagie
authored andcommitted
Disable audit and outdated checks on nightly. (proxy-wasm#281)
Neither cargo audit nor cargo outdated tools support Cargo lockfile v4 yet, so those checks are always failing. Signed-off-by: Piotr Sikora <[email protected]>
1 parent da7e6fb commit 5053f3b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -397,11 +397,13 @@ jobs:
397397
- name: Format (manifest)
398398
run: cargo verify-project
399399

400-
- name: Run cargo audit
401-
run: cargo audit
400+
# TODO: Re-enable once cargo audit supports Cargo lockfile v4.
401+
#- name: Run cargo audit
402+
# run: cargo audit
402403

403-
- name: Run cargo outdated
404-
run: cargo outdated --root-deps-only --exit-code 1
404+
# TODO: Re-enable once cargo outdated supports Cargo lockfile v4.
405+
#- name: Run cargo outdated
406+
# run: cargo outdated --root-deps-only --exit-code 1
405407

406408
- name: Rename .wasm to match expected filename
407409
run: |

0 commit comments

Comments
 (0)