Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/actions/setup-android/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ runs:

# Cache Gradle dependencies
- name: Setup Gradle Dependencies Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }}
Expand All @@ -85,7 +85,7 @@ runs:

# Cache Gradle Wrapper
- name: Setup Gradle Wrapper Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle*properties') }}
Expand All @@ -94,7 +94,7 @@ runs:

# Cache Kotlin/Native compiler
- name: Setup Kotlin/Native Compiler Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.konan
key: ${{ runner.os }}-kotlin-native-compiler-${{ hashFiles('gradle/libs.versions.toml') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/actions/setup-ios/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ runs:

# Cache Gradle dependencies
- name: Setup Gradle Dependencies Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }}
Expand All @@ -72,7 +72,7 @@ runs:

# Cache Gradle Wrapper
- name: Setup Gradle Wrapper Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle*properties') }}
Expand All @@ -81,7 +81,7 @@ runs:

# Cache Kotlin/Native compiler
- name: Setup Kotlin/Native Compiler Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.konan
key: ${{ runner.os }}-kotlin-native-compiler-${{ hashFiles('gradle/libs.versions.toml') }}
Expand All @@ -100,7 +100,7 @@ runs:

# Cache Pods dependencies
- name: Cache Pods
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-pods
with:
path: './iosHyperskillApp/Pods'
Expand All @@ -111,7 +111,7 @@ runs:
# Cache CocoaPods
- name: Cache CocoaPods
if: steps.cache-pods.outputs.cache-hit != 'true'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cocoapods
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
working-directory: "./iosHyperskillApp"

- name: Cache Pods
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-pods
with:
path: "./iosHyperskillApp/Pods"
Expand Down
Loading