From 0afdd6c264242d25efec5b16edf9497663592d63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Apr 2021 00:40:45 +0000 Subject: [PATCH] Update actions/cache requirement to v2.1.5 Updates the requirements on [actions/cache](https://github.com/actions/cache) to permit the latest version. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/commits/1a9e2138d905efd099035b49d8b7a3888c653ca8) Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 665ede661..80817f2a2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,7 +26,7 @@ jobs: run: echo "::set-output name=dir::$(npm config get cache)" - name: Cache node_modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 id: npm-cache with: path: ${{ steps.npm-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dcc893758..c83636d51 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: node-version: 12 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v2.1.5 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}