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') }}