Skip to content

Commit 5c9715e

Browse files
committed
Fix setup-gradle action caching issue
1 parent b1379e5 commit 5c9715e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
3434
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
3535
- name: Setup Gradle
36-
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
36+
uses: gradle/actions/setup-gradle@v4
3737

3838
- name: Assemble with Gradle Wrapper
3939
run: ./gradlew assemble
@@ -72,7 +72,7 @@ jobs:
7272
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
7373
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
7474
- name: Setup Gradle
75-
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
75+
uses: gradle/actions/setup-gradle@v4
7676

7777
- name: JvmTest with Gradle Wrapper and Kover coverage
7878
if: matrix.os == 'ubuntu-latest'

.github/workflows/heavy-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
3838
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
3939
- name: Setup Gradle
40-
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
40+
uses: gradle/actions/setup-gradle@v4
4141

4242
- name: JvmIntegrationTest with Gradle Wrapper
4343
env:

.github/workflows/ollama-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
3838
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
3939
- name: Setup Gradle
40-
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
40+
uses: gradle/actions/setup-gradle@v4
4141

4242
- name: JvmOllamaTest with Gradle Wrapper
4343
env:

0 commit comments

Comments
 (0)