diff --git a/.github/actions/prepare-android/action.yml b/.github/actions/prepare-android/action.yml index d8a792e8..d2cb5807 100644 --- a/.github/actions/prepare-android/action.yml +++ b/.github/actions/prepare-android/action.yml @@ -5,14 +5,14 @@ runs: using: composite steps: - name: Set up our JDK environment - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: '17' - cache: 'gradle' - cache-dependency-path: | - **/*.gradle* - **/gradle-wrapper.properties + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + cache: 'gradle' + cache-dependency-path: | + **/*.gradle* + **/gradle-wrapper.properties - name: Finalize Android SDK run: | diff --git a/.github/actions/prepare-ios/action.yml b/.github/actions/prepare-ios/action.yml index 840bf1b3..20f523c1 100644 --- a/.github/actions/prepare-ios/action.yml +++ b/.github/actions/prepare-ios/action.yml @@ -4,13 +4,12 @@ description: Prepare iOS environment runs: using: composite steps: - - name: Cache Lib cocoapods - id: cocoapods-cache-lib - uses: actions/cache@v3 - with: - path: | - ios/Pods - TestApp/ios/Pods - key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} - restore-keys: | - ${{ runner.os }}-cocoapods- + - name: Cache Pods + uses: actions/cache@v4 + with: + path: | + ios/Pods + TestApp/ios/Pods + key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} + restore-keys: | + ${{ runner.os }}-pods-