diff options
author | 2023-11-11 04:36:45 +0100 | |
---|---|---|
committer | 2023-11-11 04:36:45 +0100 | |
commit | bb2f557d6a75850aed8e8689348f7a544b364bf6 (patch) | |
tree | e6f5fd56bbacb3ac3b0fb4f98acdee0aa8f83ccf /.github | |
parent | 3408ab111f8f925b5e404e547c97a3e6c4f00fbf (diff) | |
download | iced-bb2f557d6a75850aed8e8689348f7a544b364bf6.tar.gz iced-bb2f557d6a75850aed8e8689348f7a544b364bf6.tar.bz2 iced-bb2f557d6a75850aed8e8689348f7a544b364bf6.zip |
Fix `artifacts` job in `audit` workflow
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/audit.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index bfb617fb..5f5f7f65 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -24,5 +24,7 @@ jobs: - name: Install cargo-outdated run: cargo install cargo-outdated - uses: actions/checkout@master + - name: Delete `web-sys` dependency from `integration` example + run: sed '$d' examples/integration/Cargo.toml - name: Find outdated dependencies run: cargo outdated --workspace --exit-code 1 |