Skip to content

Commit d8b3620

Browse files
Bump actions/upload-artifact from 5 to 6 (#2383)
1 parent 8de93a1 commit d8b3620

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/javaTests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)