@@ -102,7 +102,7 @@ jobs:
102102 gh-token : ${{ secrets.GITHUB_TOKEN }}
103103
104104 - name : Upload Build
105- uses : actions/upload-artifact@v4
105+ uses : actions/upload-artifact@v5
106106 with :
107107 name : " build"
108108 path : |
@@ -145,7 +145,7 @@ jobs:
145145 uses : Wandalen/wretry.action@v3
146146 with :
147147 attempt_limit : 3
148- action : actions/download-artifact@v5
148+ action : actions/download-artifact@v6
149149 with : |
150150 name: build
151151 path: build
@@ -158,7 +158,7 @@ jobs:
158158 run : npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} || exit 0
159159
160160 - name : Upload blob report to GitHub Actions Artifacts
161- uses : actions/upload-artifact@v4
161+ uses : actions/upload-artifact@v5
162162 with :
163163 name : blob-report-${{ matrix.shardIndex }}
164164 path : blob-report
@@ -187,7 +187,7 @@ jobs:
187187 attempt_delay : 60000 # 1 minute
188188
189189 - name : Download blob reports from GitHub Actions Artifacts
190- uses : actions/download-artifact@v5
190+ uses : actions/download-artifact@v6
191191 with :
192192 path : all-blob-reports
193193 pattern : blob-report-*
@@ -197,7 +197,7 @@ jobs:
197197 run : npx playwright merge-reports --reporter html ./all-blob-reports
198198
199199 - name : Upload Report
200- uses : actions/upload-artifact@v4
200+ uses : actions/upload-artifact@v5
201201 id : report
202202 with :
203203 name : " report"
@@ -232,7 +232,7 @@ jobs:
232232 echo "HTML_REPORT_URL_PATH=reports/$BRANCH_SAFE/${{ github.run_id }}/${{ github.run_attempt }}" >> $GITHUB_ENV
233233
234234 - name : Download zipped HTML report
235- uses : actions/download-artifact@v5
235+ uses : actions/download-artifact@v6
236236 with :
237237 name : report
238238 path : ${{ env.HTML_REPORT_URL_PATH }}
0 commit comments