From f6b41dbf91d3061c741e7c0d097ceb1e1b5b2aeb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Apr 2023 18:57:03 +0000 Subject: [PATCH 1/2] GitHub Actions: Bump actions/cache from 3.2.5 to 3.3.1 Bumps [actions/cache](https://github.com/actions/cache) from 3.2.5 to 3.3.1. - [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.2.5...v3.3.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 86b2b96eca..ff7a7c87df 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -69,7 +69,7 @@ jobs: working-directory: './iosHyperskillApp' - name: Cache Pods - uses: actions/cache@v3.2.5 + uses: actions/cache@v3.3.1 id: cache-pods with: path: './iosHyperskillApp/Pods' From 2ae033e24a44ab7ec1efb6fd41fe43d9ab42d2da Mon Sep 17 00:00:00 2001 From: Ivan Magda Date: Fri, 14 Apr 2023 12:15:54 +0300 Subject: [PATCH 2/2] Bump actions/cache from 3.2.5 to 3.3.1 --- .github/actions/setup-android/action.yml | 6 +++--- .github/actions/setup-ios/action.yml | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/actions/setup-android/action.yml b/.github/actions/setup-android/action.yml index c678d02ee8..69730faf75 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@v3.2.5 + uses: actions/cache@v3.3.1 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@v3.2.5 + uses: actions/cache@v3.3.1 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@v3.2.5 + uses: actions/cache@v3.3.1 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 4f0df38ec4..c76f11631e 100644 --- a/.github/actions/setup-ios/action.yml +++ b/.github/actions/setup-ios/action.yml @@ -62,7 +62,7 @@ runs: # Cache Gradle dependencies - name: Setup Gradle Dependencies Cache - uses: actions/cache@v3.2.5 + uses: actions/cache@v3.3.1 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} @@ -71,7 +71,7 @@ runs: # Cache Gradle Wrapper - name: Setup Gradle Wrapper Cache - uses: actions/cache@v3.2.5 + uses: actions/cache@v3.3.1 with: path: ~/.gradle/wrapper key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle*properties') }} @@ -80,7 +80,7 @@ runs: # Cache Kotlin/Native compiler - name: Setup Kotlin/Native Compiler Cache - uses: actions/cache@v3.2.5 + uses: actions/cache@v3.3.1 with: path: ~/.konan key: ${{ runner.os }}-kotlin-native-compiler-${{ hashFiles('gradle/libs.versions.toml') }} @@ -99,7 +99,7 @@ runs: # Cache Pods dependencies - name: Cache Pods - uses: actions/cache@v3.2.5 + uses: actions/cache@v3.3.1 id: cache-pods with: path: './iosHyperskillApp/Pods' @@ -110,7 +110,7 @@ runs: # Cache CocoaPods - name: Cache CocoaPods if: steps.cache-pods.outputs.cache-hit != 'true' - uses: actions/cache@v3.2.5 + uses: actions/cache@v3.3.1 with: path: | ~/.cocoapods