File tree Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ jobs:
3131 # Pinned 1.0.0 version
3232 - uses : haya14busa/action-workflow_run-status@967ed83efa565c257675ed70cfe5231f062ddd94
3333
34- - uses : actions/checkout@v2.3.4
34+ - uses : actions/checkout@v3
3535 with :
3636 ref : ${{ github.event.workflow_run.head_sha }}
3737
3838 - name : Cache
39- uses : actions/cache@v2.1.3
39+ uses : actions/cache@v3
4040 with :
4141 path : ~/.m2/repository
4242 key : ${{ runner.os }}-maven-${{ github.workflow }}-${{ hashFiles('**/pom.xml') }}
4747 run : mvn clean test -fae -T 2 -B -V -Dmaven.wagon.http.retryHandler.count=3 -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
4848
4949 - name : Archive build artifacts
50- uses : actions/upload-artifact@v2.2.2
50+ uses : actions/upload-artifact@v3
5151 if : always()
5252 with :
5353 name : Build debug files
@@ -56,10 +56,12 @@ jobs:
5656 **/target/surefire-reports/*
5757
5858 - name : Surefire Report
59- # Pinned 1.0.5 version
60- uses : ScaCap /action-surefire -report@ad808943e6bfbd2e6acba7c53fdb5c89534da533
59+ # Pinned 3.5.2 version
60+ uses : mikepenz /action-junit -report@16a9560bd02f11e7e3bf6b3e2ef6bba6c9d07c32
6161 if : always()
6262 with :
63- # GITHUB_TOKEN
63+ report_paths : ' **/target/surefire-reports/TEST-*.xml '
6464 github_token : ${{ secrets.GITHUB_TOKEN }}
65- commit : ${{ github.event.workflow_run.head_sha }}
65+ detailed_summary : true
66+ commit : ${{ github.event.workflow_run.head_sha }}
67+ check_name : Test Report
Original file line number Diff line number Diff line change @@ -30,19 +30,19 @@ jobs:
3030 steps :
3131 # Pinned 1.0.0 version
3232 - uses : haya14busa/action-workflow_run-status@967ed83efa565c257675ed70cfe5231f062ddd94
33- - uses : actions/checkout@v2.3.4
33+ - uses : actions/checkout@v3
3434 with :
3535 path : plugin
3636 ref : ${{ github.event.workflow_run.head_sha }}
3737
3838 - name : Checkout e2e test repo
39- uses : actions/checkout@v2.3.4
39+ uses : actions/checkout@v3
4040 with :
4141 repository : cdapio/cdap-e2e-tests
4242 path : e2e
4343
4444 - name : Cache
45- uses : actions/cache@v2.1.3
45+ uses : actions/cache@v3
4646 with :
4747 path : ~/.m2/repository
4848 key : ${{ runner.os }}-maven-${{ github.workflow }}-${{ hashFiles('**/pom.xml') }}
@@ -70,14 +70,14 @@ jobs:
7070 SALESFORCE_CONSUMER_SECRET : ${{ steps.secrets.outputs.SALESFORCE_CONSUMER_SECRET }}
7171
7272 - name : Upload report
73- uses : actions/upload-artifact@v2.2.4
73+ uses : actions/upload-artifact@v3
7474 if : always()
7575 with :
7676 name : Cucumber report
7777 path : ./plugin/target/cucumber-reports
7878
7979 - name : Upload debug files
80- uses : actions/upload-artifact@v2.2.4
80+ uses : actions/upload-artifact@v3
8181 if : always()
8282 with :
8383 name : Debug files
You can’t perform that action at this time.
0 commit comments