File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ jobs:
106106 echo "ARTIFACT_NAME=$ARTIFACT_NAME" >> $GITHUB_ENV
107107
108108 - name : Save Java Test Coverage as Artifact
109- uses : actions/upload-artifact@v5
109+ uses : actions/upload-artifact@v6
110110 with :
111111 name : ${{ env.ARTIFACT_NAME }}
112112 path : target/jacoco.exec
@@ -160,23 +160,23 @@ jobs:
160160
161161 - name : Upload Jacoco Report Artifact PR
162162 if : (github.repository_owner == 'apache') && (github.ref_name != 'main')
163- uses : actions/upload-artifact@v5
163+ uses : actions/upload-artifact@v6
164164 with :
165165 name : Java Code Coverage (Jacoco)
166166 path : target/site/jacoco
167167 retention-days : 7
168168
169169 - name : Upload Jacoco Report Artifact Main
170170 if : (github.repository_owner == 'apache') && (github.ref_name == 'main')
171- uses : actions/upload-artifact@v5
171+ uses : actions/upload-artifact@v6
172172 with :
173173 name : Java Code Coverage (Jacoco)
174174 path : target/site/jacoco
175175 retention-days : 30
176176
177177 - name : Upload Jacoco Report Artifact Fork
178178 if : (github.repository_owner != 'apache')
179- uses : actions/upload-artifact@v5
179+ uses : actions/upload-artifact@v6
180180 with :
181181 name : Java Code Coverage (Jacoco)
182182 path : target/site/jacoco
You can’t perform that action at this time.
0 commit comments