From e576261ceb6f623e1ce8c47f638a76e8df07ec6c Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 20 Feb 2024 01:37:50 +0100 Subject: Disable `artifacts` job in `audit` workflow It seems to produce false positives all the time, while not really detecting outdated dependencies when it matters. --- .github/workflows/audit.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to '.github') diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 57169796..d5c56ac0 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -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 -- cgit