From fb25eb3c54539daaa0d8fedd160ad94ce7646bf0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Mar 2021 07:26:26 +0000 Subject: [PATCH] github-actions(deps): update actions/cache requirement to v2.1.4 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/26968a09c0ea4f3e233fdddbafd1166051a095f6) Signed-off-by: dependabot[bot] --- .github/workflows/linter.yml | 2 +- .github/workflows/test.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 8e214cc..94cf74b 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -14,7 +14,7 @@ jobs: with: ruby-version: 3.0.0 - name: Cache gems - uses: actions/cache@v1 + uses: actions/cache@v2.1.4 with: path: vendor/bundle key: ${{ runner.os }}-linter-${{ hashFiles('**/Gemfile.lock') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 18270d7..b3ddb89 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,7 +35,7 @@ jobs: ruby-version: 3.0.0 - name: Cache gems - uses: actions/cache@v1 + uses: actions/cache@v2.1.4 with: path: vendor/bundle key: ${{ runner.os }}-test-${{ hashFiles('**/Gemfile.lock') }} @@ -55,7 +55,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Js dependencies - uses: actions/cache@v2 + uses: actions/cache@v2.1.4 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -69,7 +69,7 @@ jobs: node-version: 15.5.1 - name: Cache Node Modules - uses: actions/cache@v2 + uses: actions/cache@v2.1.4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}