Skip to content

Commit abc45a3

Browse files
authored
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 <[email protected]>
1 parent 434cdd5 commit abc45a3

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
@@ -395,11 +395,13 @@ jobs:
395395
- name: Format (manifest)
396396
run: cargo verify-project
397397

398-
- name: Run cargo audit
399-
run: cargo audit
398+
# TODO: Re-enable once cargo audit supports Cargo lockfile v4.
399+
#- name: Run cargo audit
400+
# run: cargo audit
400401

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

404406
- name: Rename .wasm to match expected filename
405407
run: |

0 commit comments

Comments
 (0)