File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -97,23 +97,29 @@ jobs:
9797
9898 - name : Publish results to Codecov for PR coming from hazelcast organization
9999 if : ${{ matrix.os == 'ubuntu-latest' && github.event_name == 'pull_request_target' }}
100- uses : codecov/codecov-action@v3
100+ uses : codecov/codecov-action@v5
101101 with :
102+ token : ${{ secrets.CODECOV_TOKEN }}
102103 files : coverage/lcov.info
103104 override_pr : ${{ github.event.pull_request.number }}
105+ fail_ci_if_error : true
104106
105107 - name : Publish results to Codecov for Push
106108 if : ${{ matrix.os == 'ubuntu-latest' && github.event_name == 'push' }}
107- uses : codecov/codecov-action@v3
109+ uses : codecov/codecov-action@v5
108110 with :
111+ token : ${{ secrets.CODECOV_TOKEN }}
109112 files : coverage/lcov.info
113+ fail_ci_if_error : true
110114
111115 - name : Publish result to Codecov for PR coming from community
112116 if : ${{ matrix.os == 'ubuntu-latest' && github.event_name == 'workflow_dispatch' }}
113- uses : codecov/codecov-action@v3
117+ uses : codecov/codecov-action@v5
114118 with :
119+ token : ${{ secrets.CODECOV_TOKEN }}
115120 files : coverage/lcov.info
116121 override_pr : ${{ github.event.inputs.pr_number }}
122+ fail_ci_if_error : true
117123
118124 - name : Upload remote controller logs if test run fails
119125 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments