From c330b071ff503b27c6961ecec20de2e30ac5aa8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Mar 2023 08:56:50 +0000 Subject: [PATCH] build(deps): bump actions/cache from 3.0.4 to 3.3.1 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.4 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.4...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-cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index afc660c..2b7373d 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -27,7 +27,7 @@ jobs: name: Find Yarn's cache folder run: echo "::set-output name=path::$(yarn config get cacheFolder)" - name: Cache Yarn's cache folder - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.3.1 with: path: ${{ steps.find-yarn-cache-folder.outputs.path }} key: yarn-cache-folder-os-${{ runner.os }}-node-${{ env.node-version }}-${{ hashFiles('yarn.lock') }} @@ -54,7 +54,7 @@ jobs: name: Find Yarn's cache folder run: echo "::set-output name=path::$(yarn config get cacheFolder)" - name: Cache Yarn's cache folder - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.3.1 with: path: ${{ steps.find-yarn-cache-folder.outputs.path }} key: yarn-cache-folder-os-${{ runner.os }}-node-${{ env.node-version }}-${{ hashFiles('yarn.lock') }}