From 3bba0c5fcdca4fef65d9915940cdd3e1bb777c9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Mar 2023 13:05:01 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3.0.2 to 3.3.1 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.3.1. - [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.1) --- 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..e5d5afb 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.1 id: cache with: path: ~/.npm diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67cf435..1a1443c 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.1 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.1 if: matrix.os == 'windows-latest' with: path: ${{ steps.npm-cache.outputs.dir }}