diff --git a/.github/actions/setup_build/action.yml b/.github/actions/setup_build/action.yml index bfc718d7..21400c46 100644 --- a/.github/actions/setup_build/action.yml +++ b/.github/actions/setup_build/action.yml @@ -30,19 +30,3 @@ runs: with: bundler-cache: true # runs 'bundle install' and caches installed gems automatically ruby-version: ${{ inputs.ruby-version }} # Not needed with a .ruby-version file - - name: Cocoapods Cache - uses: actions/cache@v4 - id: cocoapods-cache - if: runner.os == 'macOS' - with: - path: ios/Pods - key: ${{ runner.os }}-pods-${{ hashFiles('pubspec.lock') }} - restore-keys: | - ${{ runner.os }}-pods- - - name: Podfile lock cache - uses: actions/cache@v4 - id: cache-podfile - if: runner.os == 'macOS' - with: - path: ios/Podfile.lock - key: ${{ runner.os }}-pods-${{ hashFiles('pubspec.lock') }}