Skip to content

Commit 529f8c6

Browse files
GitHub Actions: Bump actions/cache from 4.0.2 to 4.1.1 (#1204)
* GitHub Actions: Bump actions/cache from 4.0.2 to 4.1.1 Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.1.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.0.2...v4.1.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Update remaining --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ivan Magda <[email protected]>
1 parent 8a44c49 commit 529f8c6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/actions/setup-android/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ runs:
7676

7777
# Cache Gradle dependencies
7878
- name: Setup Gradle Dependencies Cache
79-
uses: actions/cache@v4.0.2
79+
uses: actions/cache@v4.1.1
8080
with:
8181
path: ~/.gradle/caches
8282
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }}
@@ -85,7 +85,7 @@ runs:
8585
8686
# Cache Gradle Wrapper
8787
- name: Setup Gradle Wrapper Cache
88-
uses: actions/cache@v4.0.2
88+
uses: actions/cache@v4.1.1
8989
with:
9090
path: ~/.gradle/wrapper
9191
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle*properties') }}
@@ -94,7 +94,7 @@ runs:
9494
9595
# Cache Kotlin/Native compiler
9696
- name: Setup Kotlin/Native Compiler Cache
97-
uses: actions/cache@v4.0.2
97+
uses: actions/cache@v4.1.1
9898
with:
9999
path: ~/.konan
100100
key: ${{ runner.os }}-kotlin-native-compiler-${{ hashFiles('gradle/libs.versions.toml') }}

.github/actions/setup-ios/action.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ runs:
6363

6464
# Cache Gradle dependencies
6565
- name: Setup Gradle Dependencies Cache
66-
uses: actions/cache@v4.0.2
66+
uses: actions/cache@v4.1.1
6767
with:
6868
path: ~/.gradle/caches
6969
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }}
@@ -72,7 +72,7 @@ runs:
7272
7373
# Cache Gradle Wrapper
7474
- name: Setup Gradle Wrapper Cache
75-
uses: actions/cache@v4.0.2
75+
uses: actions/cache@v4.1.1
7676
with:
7777
path: ~/.gradle/wrapper
7878
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle*properties') }}
@@ -81,7 +81,7 @@ runs:
8181
8282
# Cache Kotlin/Native compiler
8383
- name: Setup Kotlin/Native Compiler Cache
84-
uses: actions/cache@v4.0.2
84+
uses: actions/cache@v4.1.1
8585
with:
8686
path: ~/.konan
8787
key: ${{ runner.os }}-kotlin-native-compiler-${{ hashFiles('gradle/libs.versions.toml') }}
@@ -100,7 +100,7 @@ runs:
100100

101101
# Cache Pods dependencies
102102
- name: Cache Pods
103-
uses: actions/cache@v4.0.2
103+
uses: actions/cache@v4.1.1
104104
id: cache-pods
105105
with:
106106
path: './iosHyperskillApp/Pods'
@@ -111,7 +111,7 @@ runs:
111111
# Cache CocoaPods
112112
- name: Cache CocoaPods
113113
if: steps.cache-pods.outputs.cache-hit != 'true'
114-
uses: actions/cache@v4.0.2
114+
uses: actions/cache@v4.1.1
115115
with:
116116
path: |
117117
~/.cocoapods

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
working-directory: './iosHyperskillApp'
126126

127127
- name: Cache Pods
128-
uses: actions/cache@v4.0.2
128+
uses: actions/cache@v4.1.1
129129
id: cache-pods
130130
with:
131131
path: './iosHyperskillApp/Pods'

0 commit comments

Comments
 (0)