From c86789c2fe6c51b55d8d17bc6633e28de6ed7ebd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Mar 2023 13:02:00 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3.0.2 to 3.3.0 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.0.2...v3.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-mutation-testing.yml | 2 +- .github/workflows/ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-mutation-testing.yml b/.github/workflows/ci-mutation-testing.yml index da30d75..60a2ba7 100644 --- a/.github/workflows/ci-mutation-testing.yml +++ b/.github/workflows/ci-mutation-testing.yml @@ -23,7 +23,7 @@ jobs: git config --global core.autocrlf false git config --global core.eol lf - uses: actions/checkout@v3 - - uses: actions/cache@v3.0.2 + - uses: actions/cache@v3.3.0 id: cache with: path: ~/.npm diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67cf435..98ca065 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: git config --global core.autocrlf false git config --global core.eol lf - uses: actions/checkout@v3 - - uses: actions/cache@v3.0.2 + - uses: actions/cache@v3.3.0 id: cache if: matrix.os != 'windows-latest' with: @@ -49,7 +49,7 @@ jobs: if: matrix.os == 'windows-latest' run: | echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v3.0.2 + - uses: actions/cache@v3.3.0 if: matrix.os == 'windows-latest' with: path: ${{ steps.npm-cache.outputs.dir }}