From f326b006b495b6a7607f3a82423404678cfca005 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Mar 2022 20:01:56 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/changelog.yml | 2 +- .github/workflows/test-template-repo.yml | 8 ++++---- .github/workflows/update-template-repo.yml | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 7483c9e..795183f 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -20,7 +20,7 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: vendor/bundle key: ${{ runner.os }}-changelog-gem-${{ hashFiles('**/Gemfile.lock') }} diff --git a/.github/workflows/test-template-repo.yml b/.github/workflows/test-template-repo.yml index 67865b2..ef9c5e9 100644 --- a/.github/workflows/test-template-repo.yml +++ b/.github/workflows/test-template-repo.yml @@ -27,11 +27,11 @@ jobs: run: | cd $GITHUB_WORKSPACE/Docker-Rails-Generator ./bin/build-environment-for-building-app - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ github.workspace }}/vendor/bundle key: ${{ runner.os }}-gem-${{ hashFiles('**/*/Gemfile.lock') }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ github.workspace }}/App/node_modules key: ${{ runner.os }}-node_modules-${{ hashFiles('**/*/package.json') }} @@ -50,14 +50,14 @@ jobs: restore-keys: | ${{ runner.os }}-docker- - name: Cache Assets - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ${{ github.workspace }}/App/public/assets ${{ github.workspace }}/App/public/packs-test key: ${{ runner.os }}-assets-${{ hashFiles('**/*/yarn.lock') }} - name: Cache gems - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ${{ github.workspace }}/App/vendor/bundle diff --git a/.github/workflows/update-template-repo.yml b/.github/workflows/update-template-repo.yml index 8375e1c..a1d584a 100644 --- a/.github/workflows/update-template-repo.yml +++ b/.github/workflows/update-template-repo.yml @@ -33,11 +33,11 @@ jobs: run: | cd $GITHUB_WORKSPACE/Docker-Rails-Generator ./bin/build-environment-for-building-app - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ github.workspace }}/vendor/bundle key: ${{ runner.os }}-gem-${{ hashFiles('**/*/Gemfile.lock') }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ github.workspace }}/App/node_modules key: ${{ runner.os }}-node_modules-${{ hashFiles('**/*/package.json') }} @@ -56,14 +56,14 @@ jobs: restore-keys: | ${{ runner.os }}-docker- - name: Cache Assets - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ${{ github.workspace }}/App/public/assets ${{ github.workspace }}/App/public/packs-test key: ${{ runner.os }}-assets-${{ hashFiles('**/*/yarn.lock') }} - name: Cache gems - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ${{ github.workspace }}/App/vendor/bundle