From d691f93a68709092e043da877ac6ffe525accc00 Mon Sep 17 00:00:00 2001 From: Jonas Bushart Date: Wed, 1 Nov 2023 21:31:26 +0100 Subject: [PATCH] Update cargo-audit to 0.18.3 --- CHANGELOG.md | 4 ++++ action.yml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ab8d49..178b0be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.9] - 2023-11-01 + +* Update `cargo-audit` to 0.18.3 + ## [1.1.8] - 2023-08-23 * Handle missing data in advisories better to prevent crashing (#40) diff --git a/action.yml b/action.yml index ecff0e8..099249e 100644 --- a/action.yml +++ b/action.yml @@ -37,12 +37,12 @@ runs: ${{ steps.cargo-home.outputs.cargohome }}/bin/cargo-audit* ${{ steps.cargo-home.outputs.cargohome }}/.crates.toml ${{ steps.cargo-home.outputs.cargohome }}/.crates2.json - key: cargo-audit-v0.17.6 + key: cargo-audit-v0.18.3 - 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.6 --no-default-features + run: cargo install cargo-audit --vers 0.18.3 --no-default-features shell: bash - run: |