diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cfe3d6..2e81c44 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.13] - 2024-02-03 + +* Update `cargo-audit` to 0.19.0 + ## [1.1.12] - 2024-01-20 * Fix default of `file` argument to make it work again for repositories without `Cargo.lock` checked in. diff --git a/action.yml b/action.yml index aa6fd78..f693a59 100644 --- a/action.yml +++ b/action.yml @@ -41,12 +41,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.18.3 + key: cargo-audit-v0.19.0 - 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.18.3 --no-default-features + run: cargo install cargo-audit --vers 0.19.0 --no-default-features shell: bash - run: |