Skip to content

Commit 882e367

Browse files
authored
Merge pull request #2417 from Haehnchen/feature/actions-cache
update to "actions/cache@v4"
2 parents 240ba8b + a0c8fb6 commit 882e367

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/gradle.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository and submodules
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
submodules: recursive
2222

@@ -28,14 +28,14 @@ jobs:
2828

2929
# Cache Gradle dependencies
3030
- name: Setup Gradle Dependencies Cache
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.gradle/caches
3434
key: ${{ runner.os }}-v2-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }}
3535

3636
# Cache Gradle Wrapper
3737
- name: Setup Gradle Wrapper Cache
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/.gradle/wrapper
4141
key: ${{ runner.os }}-v2-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

0 commit comments

Comments
 (0)