From 3fe4a9e69d5fab3f5a48cf127f62b06eafe651df Mon Sep 17 00:00:00 2001 From: Mauro Romito Date: Mon, 10 Mar 2025 15:11:28 +0100 Subject: [PATCH] updated cache action version --- .github/workflows/ci-build.yml | 4 ++-- .github/workflows/ci-tests.yml | 4 ++-- .github/workflows/ci-ui-tests.yml | 4 ++-- .github/workflows/release-alpha.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 171ce8a30..8a38fb2c0 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -26,13 +26,13 @@ jobs: # Common cache # Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} restore-keys: | ${{ runner.os }}-pods- - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 92ccfb95c..b3c8f6bac 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -31,13 +31,13 @@ jobs: # Common cache # Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} restore-keys: | ${{ runner.os }}-pods- - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} diff --git a/.github/workflows/ci-ui-tests.yml b/.github/workflows/ci-ui-tests.yml index 1853b0f74..06e117687 100644 --- a/.github/workflows/ci-ui-tests.yml +++ b/.github/workflows/ci-ui-tests.yml @@ -26,13 +26,13 @@ jobs: # Common cache # Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} restore-keys: | ${{ runner.os }}-pods- - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} diff --git a/.github/workflows/release-alpha.yml b/.github/workflows/release-alpha.yml index 12ab94898..e20c5a985 100644 --- a/.github/workflows/release-alpha.yml +++ b/.github/workflows/release-alpha.yml @@ -32,7 +32,7 @@ jobs: # Common cache # Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job - name: Cache CocoaPods libraries - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} @@ -40,7 +40,7 @@ jobs: ${{ runner.os }}-pods- - name: Cache Ruby gems - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}