diff options
author | 2023-10-22 15:08:08 +0200 | |
---|---|---|
committer | 2023-10-22 15:08:08 +0200 | |
commit | f1b1344d59fa7354615f560bd25ed01ad0c9f865 (patch) | |
tree | f4897a5ef16dc19a303e5611d6a532db3a65a337 /.github | |
parent | 0770e7eaf842021a4b15b00e1b81ba10dd9b8140 (diff) | |
download | iced-f1b1344d59fa7354615f560bd25ed01ad0c9f865.tar.gz iced-f1b1344d59fa7354615f560bd25ed01ad0c9f865.tar.bz2 iced-f1b1344d59fa7354615f560bd25ed01ad0c9f865.zip |
Run `cargo update` before `cargo audit` 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 e9f4b0c5..bfb617fb 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -12,6 +12,8 @@ jobs: - name: Install cargo-audit run: cargo install cargo-audit - uses: actions/checkout@master + - name: Resolve dependencies + run: cargo update - name: Audit vulnerabilities run: cargo audit |