From a5dc1fb331907fb07699096924d32c11696fd579 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 21:27:57 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- 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/deploy.yml | 4 ++-- .github/workflows/snapshots.yml | 4 ++-- .github/workflows/tests.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/bump.yml b/.github/workflows/bump.yml index c0e76103..2cad974a 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@v3 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - name: Cache pods - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: BuyPolish/Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e99da979..fbaac349 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,14 +27,14 @@ jobs: key: ${{ secrets.SSH_KEY }} known_hosts: ${{ secrets.KNOWN_HOSTS }} - name: Cache bundler gems - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - name: Cache pods - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: BuyPolish/Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} diff --git a/.github/workflows/snapshots.yml b/.github/workflows/snapshots.yml index 5c807a67..84f6238e 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@v3 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - name: Cache pods - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: BuyPolish/Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 334e5d4f..76bc3be9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,14 +17,14 @@ jobs: with: fetch-depth: 0 - name: Cache bundler gems - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - name: Cache pods - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: BuyPolish/Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}