Run sed with -i option in artifacts job

This commit is contained in:
Héctor Ramón Jiménez 2023-11-11 04:46:11 +01:00
parent bb2f557d6a
commit ef015a5e72
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -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