From cc5a62b0d0cf3be5aaa334defd03209e4dd7a4d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 11:09:58 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.11. - [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.11) --- 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..ee4f5acc4 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.11 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.11 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..53bd8357b 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.11 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.11 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..58f3c2ac5 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.11 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.11 with: path: BuyPolish/Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}