Disable artifacts job in audit workflow
It seems to produce false positives all the time, while not really detecting outdated dependencies when it matters.
This commit is contained in:
parent
42b1e98f98
commit
e576261ceb
1 changed files with 11 additions and 11 deletions
22
.github/workflows/audit.yml
vendored
22
.github/workflows/audit.yml
vendored
|
|
@ -17,14 +17,14 @@ jobs:
|
||||||
- name: Audit vulnerabilities
|
- name: Audit vulnerabilities
|
||||||
run: cargo audit
|
run: cargo audit
|
||||||
|
|
||||||
artifacts:
|
# artifacts:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- uses: hecrj/setup-rust-action@v1
|
# - uses: hecrj/setup-rust-action@v1
|
||||||
- name: Install cargo-outdated
|
# - name: Install cargo-outdated
|
||||||
run: cargo install cargo-outdated
|
# run: cargo install cargo-outdated
|
||||||
- uses: actions/checkout@master
|
# - uses: actions/checkout@master
|
||||||
- name: Delete `web-sys` dependency from `integration` example
|
# - name: Delete `web-sys` dependency from `integration` example
|
||||||
run: sed -i '$d' examples/integration/Cargo.toml
|
# run: sed -i '$d' examples/integration/Cargo.toml
|
||||||
- name: Find outdated dependencies
|
# - name: Find outdated dependencies
|
||||||
run: cargo outdated --workspace --exit-code 1 --ignore raw-window-handle
|
# run: cargo outdated --workspace --exit-code 1 --ignore raw-window-handle
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue