From 99bd9ef0820b8abfd4f402070711090bc2e88823 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Mar 2023 21:33:04 +0000 Subject: [PATCH] chore(deps): Bump actions/cache from 3.0.11 to 3.3.1 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.11 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.11...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 6509c19..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.11 + - uses: actions/cache@v3.3.1 id: cache with: path: ~/.npm diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 214780a..f5e6a24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: git config --global core.autocrlf false git config --global core.eol lf - uses: actions/checkout@v3 - - uses: actions/cache@v3.0.11 + - uses: actions/cache@v3.3.1 id: cache if: matrix.os != 'windows-latest' with: @@ -48,7 +48,7 @@ jobs: if: matrix.os == 'windows-latest' run: | echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v3.0.11 + - uses: actions/cache@v3.3.1 if: matrix.os == 'windows-latest' with: path: ${{ steps.npm-cache.outputs.dir }}