File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed
Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010 validate :
11- runs-on : ubuntu-20 .04
11+ runs-on : ubuntu-24 .04
1212
1313 steps :
1414 - name : Checkout local repository
Original file line number Diff line number Diff line change @@ -12,12 +12,19 @@ inputs:
1212 description : ' max heap to allocate to gradle'
1313 required : true
1414 default : ' 6g'
15+ gradle-executable :
16+ description : ' gradle wrapper executable'
17+ required : true
18+ default : ' ./gradlew'
1519runs :
1620 using : " composite"
17- steps :
18- - uses : gradle/gradle-build-action@v2
19- with :
20- arguments : |
21+ steps :
22+ - name : Setup Gradle
23+ uses : gradle/actions/setup-gradle@v4
24+ - name : Execute Gradle Command
25+ shell : bash
26+ run : |
27+ ${{ inputs.gradle-executable }}
2128 --info
2229 --max-workers=${{ inputs.max-workers }}
2330 -Dorg.gradle.jvmargs=-Xmx${{ inputs.max-heap }}
You can’t perform that action at this time.
0 commit comments