File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,24 +4,21 @@ on: [pull_request, push]
44jobs :
55 build :
66 runs-on : ubuntu-latest
7+ permissions :
8+ checks : write
79 steps :
810 - name : checkout repository
9- uses : actions/checkout@v3
11+ uses : actions/checkout@v6
1012 with :
1113 fetch-depth : 0
1214
13- - uses : actions/cache@v3
15+ - name : Setup Gradle
16+ uses : gradle/actions/setup-gradle@v4
1417 with :
15- path : |
16- ~/.gradle/caches
17- ~/.gradle/wrapper
18- key : ${{ runner.os }}-gradle0-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
19- restore-keys : |
20- ${{ runner.os }}-gradle0-
21- - name : validate gradle wrapper
22- uses : gradle/actions/wrapper-validation@v3
18+ cache-read-only : false
19+ cache-cleanup : never
2320 - name : setup jdk 17
24- uses : actions/setup-java@v3
21+ uses : actions/setup-java@v5
2522 with :
2623 distribution : ' zulu'
2724 java-version : 17
3128
3229 - name : JaCoCo Code Coverage Report
3330 id : jacoco_reporter
34- uses : PavanMudigonda/jacoco-reporter@v4.8
31+ uses : PavanMudigonda/jacoco-reporter@v5.0
3532 with :
3633 coverage_results_path : build/reports/jacoco/test/jacocoTestReport.xml
3734 coverage_report_name : Coverage
You can’t perform that action at this time.
0 commit comments