Skip to content

Commit 49096b3

Browse files
authored
* Use burrunan/gradle-cache-action got GH actions
According to the `gradle/gradle-build-action` docs it caches only a `main` branch. This is not appropriate for us since we really never build `main` on GH actions. With this change we will experiment if `burrunan/gradle-cache-action` does what we would like to get from the Gradle cache feature * Some config adjustments for `gradle-cache-action`
1 parent 75769ba commit 49096b3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pr-build-workflow.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@ jobs:
2828
java-version: 17
2929

3030
- name: Run Gradle
31-
uses: gradle/gradle-build-action@v2
31+
uses: burrunan/gradle-cache-action@v1
3232
env:
3333
SI_FATAL_WHEN_NO_BEANFACTORY: true
3434
NO_REFERENCE_TASK: true
3535
with:
36+
debug: false
37+
concurrent: true
38+
gradle-build-scan-report: false
3639
arguments: checkAsciidocLinks check
3740

3841
- name: Capture Test Results

0 commit comments

Comments
 (0)