From 34b262c4ffca963f195210fb9e5b76621486cdfc Mon Sep 17 00:00:00 2001 From: Jonas Bushart Date: Wed, 9 Nov 2022 18:14:33 +0100 Subject: [PATCH] Bump cargo-audit to 0.17.4 --- CHANGELOG.md | 6 ++++++ action.yml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c72f46d..8675606 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.2] - 2022-11-09 + +### Changed + +* Update `cargo-audit` to 0.17.4 which fixes checking for yanked crates. + ## [1.1.1] - 2022-10-13 ### Changed diff --git a/action.yml b/action.yml index 4225fe4..4464452 100644 --- a/action.yml +++ b/action.yml @@ -33,12 +33,12 @@ runs: ${{ env.CARGO_HOME }}/.cargo/bin/cargo-audit* ${{ env.CARGO_HOME }}/.cargo/.crates.toml ${{ env.CARGO_HOME }}/.cargo/.crates2.json - key: cargo-audit-v0.17.0 + key: cargo-audit-v0.17.4 - name: Install cargo-audit if: steps.cache.outputs.cache-hit != 'true' # Update both this version number and the cache key - run: cargo install cargo-audit --vers 0.17.0 + run: cargo install cargo-audit --vers 0.17.4 --no-default-features shell: bash - run: |