Skip to content

Commit ebd040f

Browse files
ci(deps): bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7ffb4d4 commit ebd040f

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

.github/workflows/ci_android_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
architecture: x86_64
2626

2727
- name: Cache Gradle
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
with:
3030
path: |
3131
~/.gradle/caches

.github/workflows/ci_assemble.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
architecture: x86_64
3030

3131
- name: Cache Gradle
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: |
3535
~/.gradle/caches

.github/workflows/ci_db_migrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
architecture: x86_64
3939

4040
- name: Cache Gradle
41-
uses: actions/cache@v3
41+
uses: actions/cache@v4
4242
with:
4343
path: |
4444
~/.gradle/caches

.github/workflows/ci_debug_sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
cache: 'gradle'
2727

2828
- name: Cache Gradle
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
with:
3131
path: |
3232
~/.gradle/caches

.github/workflows/ci_e2e_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
cache: 'gradle'
3131

3232
- name: Cache Gradle
33-
uses: actions/cache@v3
33+
uses: actions/cache@v4
3434
with:
3535
path: |
3636
~/.gradle/caches

.github/workflows/ci_internal_sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
cache: 'gradle'
3636

3737
- name: Cache Gradle
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: |
4141
~/.gradle/caches

.github/workflows/ci_record_snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
cache: 'gradle'
2525

2626
- name: Cache Gradle
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: |
3030
~/.gradle/caches

.github/workflows/ci_release_artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
architecture: x86_64
2424

2525
- name: Cache Gradle
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: |
2929
~/.gradle/caches

.github/workflows/ci_release_sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
cache: 'gradle'
2828

2929
- name: Cache Gradle
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: |
3333
~/.gradle/caches

.github/workflows/ci_sonarcloud.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
distribution: 'zulu'
3636

3737
- name: Cache SonarCloud packages
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/.sonar/cache
4141
key: ${{ runner.os }}-sonar
4242
restore-keys: ${{ runner.os }}-sonar
4343

4444
- name: Cache Gradle packages
45-
uses: actions/cache@v3
45+
uses: actions/cache@v4
4646
with:
4747
path: ~/.gradle/caches
4848
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

0 commit comments

Comments
 (0)