summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-11-11 04:46:11 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-11-11 04:46:11 +0100
commitef015a5e72802c059784e74d611f351df75403c0 (patch)
tree6b7fc2346fe8695fc3aa7b717d0f4237a1c1aebf /.github
parentbb2f557d6a75850aed8e8689348f7a544b364bf6 (diff)
downloadiced-ef015a5e72802c059784e74d611f351df75403c0.tar.gz
iced-ef015a5e72802c059784e74d611f351df75403c0.tar.bz2
iced-ef015a5e72802c059784e74d611f351df75403c0.zip
Run `sed` with `-i` option in `artifacts` job
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/audit.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml
index 5f5f7f65..80bbcacd 100644
--- a/.github/workflows/audit.yml
+++ b/.github/workflows/audit.yml
@@ -25,6 +25,6 @@ jobs:
run: cargo install cargo-outdated
- uses: actions/checkout@master
- name: Delete `web-sys` dependency from `integration` example
- run: sed '$d' examples/integration/Cargo.toml
+ run: sed -i '$d' examples/integration/Cargo.toml
- name: Find outdated dependencies
run: cargo outdated --workspace --exit-code 1