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
|
||||
run: cargo audit
|
||||
|
||||
artifacts:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: hecrj/setup-rust-action@v1
|
||||
- name: Install cargo-outdated
|
||||
run: cargo install cargo-outdated
|
||||
- uses: actions/checkout@master
|
||||
- name: Delete `web-sys` dependency from `integration` example
|
||||
run: sed -i '$d' examples/integration/Cargo.toml
|
||||
- name: Find outdated dependencies
|
||||
run: cargo outdated --workspace --exit-code 1 --ignore raw-window-handle
|
||||
# artifacts:
|
||||
# runs-on: ubuntu-latest
|
||||
# steps:
|
||||
# - uses: hecrj/setup-rust-action@v1
|
||||
# - name: Install cargo-outdated
|
||||
# run: cargo install cargo-outdated
|
||||
# - uses: actions/checkout@master
|
||||
# - name: Delete `web-sys` dependency from `integration` example
|
||||
# run: sed -i '$d' examples/integration/Cargo.toml
|
||||
# - name: Find outdated dependencies
|
||||
# run: cargo outdated --workspace --exit-code 1 --ignore raw-window-handle
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue