From a57d02af379a7d4ba382f6f6798f20f00fe94284 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Feb 2021 11:58:56 +0000 Subject: [PATCH] chore(deps): bump actions/cache from v2.1.3 to v2.1.4 Bumps [actions/cache](https://github.com/actions/cache) from v2.1.3 to v2.1.4. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.3...26968a09c0ea4f3e233fdddbafd1166051a095f6) Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7a5f1d7068..e8589486baf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - name: Cache node modules id: cache-node-modules - uses: actions/cache@v2.1.3 + uses: actions/cache@v2.1.4 with: path: node_modules key: ${{ matrix['node-version'] }}-npm-${{ hashFiles('package-lock.json') }} @@ -40,7 +40,7 @@ jobs: - name: Cache build id: cache-build - uses: actions/cache@v2.1.3 + uses: actions/cache@v2.1.4 with: path: dist key: ${{ matrix['node-version'] }}-cache-build-${{ hashFiles('build/*') }}-${{ hashFiles('src/*') }}-${{ hashFiles('static/*') }}-${{ hashFiles('package-lock.json') }}