File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
1313 runs-on : ubuntu-latest
1414 steps :
1515 - name : Checkout code
16- uses : actions/checkout@v3
16+ uses : actions/checkout@v4
1717
1818 - name : Set up Java 17
19- uses : actions/setup-java@v3
19+ uses : actions/setup-java@v4
2020 with :
2121 distribution : ' temurin'
2222 java-version : ' 17'
@@ -29,25 +29,25 @@ jobs:
2929 run : ./gradlew test jacocoTestReport
3030
3131 - name : Upload Test Results
32- uses : actions/upload-artifact@v3
32+ uses : actions/upload-artifact@v4
3333 with :
3434 name : test-results
3535 path : build/reports/tests/test
3636
3737 - name : Upload Coverage Report
38- uses : actions/upload-artifact@v3
38+ uses : actions/upload-artifact@v4
3939 with :
4040 name : code-coverage-report
4141 path : build/reports/jacoco/test/html
4242
4343 - name : Upload Jacoco XML Report
44- uses : actions/upload-artifact@v3
44+ uses : actions/upload-artifact@v4
4545 with :
4646 name : jacoco-xml-report
4747 path : build/reports/jacoco/test/jacocoTestReport.xml
4848
4949 - name : Codecov
50- uses : codecov/codecov-action@v3
50+ uses : codecov/codecov-action@v5
5151 with :
5252 token : ${{ secrets.CODECOV_TOKEN }}
5353 files : build/reports/jacoco/test/jacocoTestReport.xml
You can’t perform that action at this time.
0 commit comments