From f66086952d9520873f11d59e97f25e7f4b096a9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Oct 2024 19:17:06 +0700 Subject: [PATCH] GitHub Actions: Bump actions/cache from 4.1.1 to 4.1.2 (#1220) * GitHub Actions: Bump actions/cache from 4.1.1 to 4.1.2 Bumps [actions/cache](https://github.com/actions/cache) from 4.1.1 to 4.1.2. - [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/v4.1.1...v4.1.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Update all --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ivan Magda --- .github/actions/setup-android/action.yml | 6 +++--- .github/actions/setup-ios/action.yml | 10 +++++----- .github/workflows/ci.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/actions/setup-android/action.yml b/.github/actions/setup-android/action.yml index 3dacce0ac..a870fda90 100644 --- a/.github/actions/setup-android/action.yml +++ b/.github/actions/setup-android/action.yml @@ -76,7 +76,7 @@ runs: # Cache Gradle dependencies - name: Setup Gradle Dependencies Cache - uses: actions/cache@v4.1.1 + uses: actions/cache@v4.1.2 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} @@ -85,7 +85,7 @@ runs: # Cache Gradle Wrapper - name: Setup Gradle Wrapper Cache - uses: actions/cache@v4.1.1 + uses: actions/cache@v4.1.2 with: path: ~/.gradle/wrapper key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle*properties') }} @@ -94,7 +94,7 @@ runs: # Cache Kotlin/Native compiler - name: Setup Kotlin/Native Compiler Cache - uses: actions/cache@v4.1.1 + uses: actions/cache@v4.1.2 with: path: ~/.konan key: ${{ runner.os }}-kotlin-native-compiler-${{ hashFiles('gradle/libs.versions.toml') }} diff --git a/.github/actions/setup-ios/action.yml b/.github/actions/setup-ios/action.yml index 9b956ef34..91f5e57f2 100644 --- a/.github/actions/setup-ios/action.yml +++ b/.github/actions/setup-ios/action.yml @@ -63,7 +63,7 @@ runs: # Cache Gradle dependencies - name: Setup Gradle Dependencies Cache - uses: actions/cache@v4.1.1 + uses: actions/cache@v4.1.2 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} @@ -72,7 +72,7 @@ runs: # Cache Gradle Wrapper - name: Setup Gradle Wrapper Cache - uses: actions/cache@v4.1.1 + uses: actions/cache@v4.1.2 with: path: ~/.gradle/wrapper key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle*properties') }} @@ -81,7 +81,7 @@ runs: # Cache Kotlin/Native compiler - name: Setup Kotlin/Native Compiler Cache - uses: actions/cache@v4.1.1 + uses: actions/cache@v4.1.2 with: path: ~/.konan key: ${{ runner.os }}-kotlin-native-compiler-${{ hashFiles('gradle/libs.versions.toml') }} @@ -100,7 +100,7 @@ runs: # Cache Pods dependencies - name: Cache Pods - uses: actions/cache@v4.1.1 + uses: actions/cache@v4.1.2 id: cache-pods with: path: './iosHyperskillApp/Pods' @@ -111,7 +111,7 @@ runs: # Cache CocoaPods - name: Cache CocoaPods if: steps.cache-pods.outputs.cache-hit != 'true' - uses: actions/cache@v4.1.1 + uses: actions/cache@v4.1.2 with: path: | ~/.cocoapods diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35d2f7375..b7bd1e1c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -125,7 +125,7 @@ jobs: working-directory: "./iosHyperskillApp" - name: Cache Pods - uses: actions/cache@v4.1.1 + uses: actions/cache@v4.1.2 id: cache-pods with: path: "./iosHyperskillApp/Pods"