Skip to content

Commit

Permalink
GitHub Actions: Bump actions/cache from 4.1.1 to 4.1.2 (#1220)
Browse files Browse the repository at this point in the history
* 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](actions/cache@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] <[email protected]>

* Update all

---------

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]>
  • Loading branch information
dependabot[bot] and ivan-magda authored Oct 24, 2024
1 parent 2e06ff9 commit f660869
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
uses: actions/[email protected].2
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/[email protected].1
uses: actions/[email protected].2
id: cache-pods
with:
path: "./iosHyperskillApp/Pods"
Expand Down

0 comments on commit f660869

Please sign in to comment.