Skip to content

Commit 0bc0590

Browse files
authored
Build: Update GitHub Actions
Should fix actions/cache spending four minutes just idling after each workflow run. GitHub: #80
1 parent 7abd7ed commit 0bc0590

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
env:
1313
ORG_GRADLE_PROJECT_branch: ${{ github.head_ref || github.ref_name }}
1414
steps:
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v4
1616

17-
- uses: actions/setup-java@v3
17+
- uses: actions/setup-java@v4
1818
with:
1919
distribution: temurin
2020
java-version: |
@@ -24,11 +24,11 @@ jobs:
2424
21
2525
2626
# Can't use setup-java for this because https://github.com/actions/setup-java/issues/366
27-
- uses: actions/cache@v3
27+
- uses: actions/cache@v4
2828
with:
2929
path: ~/.gradle/wrapper
3030
key: gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}
31-
- uses: actions/cache@v3
31+
- uses: actions/cache@v4
3232
with:
3333
path: |
3434
~/.gradle/caches

0 commit comments

Comments
 (0)