From 5f96461aaf79902d1471d2e70a4d446de5ec449f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Mar 2022 11:17:11 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2...v3.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/bump.yml | 4 ++-- .github/workflows/snapshots.yml | 4 ++-- .github/workflows/tests.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/bump.yml b/.github/workflows/bump.yml index 1914969c8..5314d1261 100644 --- a/.github/workflows/bump.yml +++ b/.github/workflows/bump.yml @@ -22,14 +22,14 @@ jobs: fetch-depth: 0 token: ${{ secrets.WORKFLOW_ACCESS_TOKEN_GITHUB }} - name: Cache bundler gems - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - name: Cache pods - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: BuyPolish/Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} diff --git a/.github/workflows/snapshots.yml b/.github/workflows/snapshots.yml index c3d702458..843589881 100644 --- a/.github/workflows/snapshots.yml +++ b/.github/workflows/snapshots.yml @@ -17,14 +17,14 @@ jobs: fetch-depth: 0 token: ${{ secrets.WORKFLOW_ACCESS_TOKEN_GITHUB }} - name: Cache bundler gems - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - name: Cache pods - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: BuyPolish/Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d605f30ca..0a1cc18a9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,14 +19,14 @@ jobs: with: fetch-depth: 0 - name: Cache bundler gems - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - name: Cache pods - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: BuyPolish/Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}