summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-02-20 01:37:50 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-02-20 01:37:50 +0100
commite576261ceb6f623e1ce8c47f638a76e8df07ec6c (patch)
tree18950dfb7e36de492e4b92d47f8533e64bd64633 /.github
parent42b1e98f984383b0bd8cf9cf0d81f2ff3da49160 (diff)
downloadiced-e576261ceb6f623e1ce8c47f638a76e8df07ec6c.tar.gz
iced-e576261ceb6f623e1ce8c47f638a76e8df07ec6c.tar.bz2
iced-e576261ceb6f623e1ce8c47f638a76e8df07ec6c.zip
Disable `artifacts` job in `audit` workflow
It seems to produce false positives all the time, while not really detecting outdated dependencies when it matters.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/audit.yml22
1 files changed, 11 insertions, 11 deletions
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