Skip to content

Commit

Permalink
Bump actions/cache from 4.0.2 to 4.1.0 in /.github/actions/setup (#1599)
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.1.0.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@0c45773...2cdf405)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 7, 2024
1 parent 8893f83 commit 732f871
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
echo "GRADLE_BUILD_CACHE_DAYS=7" >> ~/.gradle/gradle.properties
- name: Gradle Binary Cache Restore
id: gradle-binary-cache-restore
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand All @@ -44,7 +44,7 @@ runs:
key: ${{ runner.os }}-gradle-binary-${{ hashFiles(format('{0}{1}', github.workspace, '/gradle/wrapper/gradle-wrapper.properties')) }}
- name: Gradle Dependency Cache Restore
id: gradle-dependency-cache-restore
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand All @@ -55,7 +55,7 @@ runs:
${{ runner.os }}-gradle-deps-
- name: Gradle Build Cache Restore
id: gradle-build-cache-restore
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand All @@ -68,7 +68,7 @@ runs:
${{ runner.os }}-gradle-build-
- name: Rust Cache Restore
id: rust-cache-restore
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand Down Expand Up @@ -98,7 +98,7 @@ runs:
- name: Gradle Binary Cache Save
id: gradle-binary-cache-save
if: github.event.pull_request.head.sha == '' && steps.gradle-binary-cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand All @@ -109,14 +109,14 @@ runs:
- name: Gradle Dependency Cache Save
id: gradle-dependency-cache-save
if: github.event.pull_request.head.sha == '' && steps.gradle-dependency-cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2
with:
path: |
~/.gradle/caches/modules-2
key: ${{ steps.gradle-dependency-cache-restore.key }}
- name: Rust Cache Save
id: rust-cache-save
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand Down

0 comments on commit 732f871

Please sign in to comment.