From 54e1b76e4fd2fd9511fcb978c1eec6676e8622f3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 05:21:38 +0000 Subject: [PATCH] build(deps): 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/integration-tests.yml | 6 +++--- .github/workflows/profile-data-generator.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 75b3af04eb5..c134bdc5e6e 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -101,7 +101,7 @@ jobs: - name: Download and Apply Patch run: ./apply-patch.sh "${{ github.event.pull_request.head.sha }}" "${{ github.sha }}" add-sentry-to-homekit - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: "Cache: Pods" id: cache_pods with: @@ -113,7 +113,7 @@ jobs: ${{ runner.os }}-pods-xcode-13.2 ${{ hashFiles('**/Gemfile.lock', '**/Podfile.lock', 'Tools/BuildMaterialDesignIconsFont.sh') }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: "Cache: Gems" id: cache_gems with: @@ -160,7 +160,7 @@ jobs: - name: Download and Apply Patch run: ./apply-patch.sh "${{ github.event.pull_request.head.sha }}" "${{ github.sha }}" add-sentry-to-vlc - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: "Cache: Pods" with: path: Pods diff --git a/.github/workflows/profile-data-generator.yml b/.github/workflows/profile-data-generator.yml index 4d735ef4086..d0671b76099 100644 --- a/.github/workflows/profile-data-generator.yml +++ b/.github/workflows/profile-data-generator.yml @@ -25,7 +25,7 @@ jobs: run: brew install getsentry/tools/sentry-cli - name: Cache Carthage dependencies id: trendingmovies-carthage-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./Samples/TrendingMovies/Carthage/Build key: trendingmovies-carthage-cache-key-${{ hashFiles('Samples/TrendingMovies/Cartfile.resolved') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a2732912cb2..e17018db92a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,7 +61,7 @@ jobs: # xcode-test.sh - name: Cache for Test Server if: ${{ matrix.runs-on == 'macos-11'}} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./test-server/.build key: ${{ runner.os }}-spm-${{ hashFiles('./test-server/Package.resolved') }} @@ -139,7 +139,7 @@ jobs: - uses: actions/checkout@v3 - name: Cache for Test Server - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./test-server/.build key: ${{ runner.os }}-spm-${{ hashFiles('./test-server/Package.resolved') }}