7878 echo "version=$NODE_VERSION" >> $GITHUB_OUTPUT
7979 echo "Node version for 'next@${{ steps.resolve-next-version.outputs.version }}' is '$NODE_VERSION'"
8080 - name : " Install Node"
81- uses : actions/setup-node@v5
81+ uses : actions/setup-node@v6
8282 with :
8383 node-version : ${{ steps.decide-node-version.outputs.version }}
8484 cache : " npm"
@@ -124,7 +124,7 @@ jobs:
124124 NEXT_RESOLVED_VERSION : ${{ steps.resolve-next-version.outputs.version }}
125125 NODE_OPTIONS : --import ${{ github.workspace }}/tools/fetch-retry.mjs
126126 - name : Upload blob report to GitHub Actions Artifacts
127- uses : actions/upload-artifact@v4
127+ uses : actions/upload-artifact@v5
128128 if : always()
129129 with :
130130 name : blob-report-${{matrix.version}}-${{ matrix.shard }}
@@ -166,7 +166,7 @@ jobs:
166166 echo "version=$NODE_VERSION" >> $GITHUB_OUTPUT
167167 echo "Node version for 'next@${{ matrix.version }}' is '$NODE_VERSION'"
168168 - name : " Install Node"
169- uses : actions/setup-node@v5
169+ uses : actions/setup-node@v6
170170 with :
171171 node-version : ${{ steps.decide-node-version.outputs.version }}
172172 cache : " npm"
@@ -256,7 +256,7 @@ jobs:
256256 echo "version=$NODE_VERSION" >> $GITHUB_OUTPUT
257257 echo "Node version for 'next@${{ matrix.version }}' is '$NODE_VERSION'"
258258 - name : " Install Node"
259- uses : actions/setup-node@v5
259+ uses : actions/setup-node@v6
260260 with :
261261 node-version : ${{ steps.decide-node-version.outputs.version }}
262262 cache : " npm"
@@ -299,14 +299,14 @@ jobs:
299299 runs-on : ubuntu-latest
300300 steps :
301301 - uses : actions/checkout@v5
302- - uses : actions/setup-node@v5
302+ - uses : actions/setup-node@v6
303303 with :
304304 node-version : 18
305305 - name : Install dependencies
306306 run : npm ci
307307
308308 - name : Download blob reports from GitHub Actions Artifacts
309- uses : actions/download-artifact@v5
309+ uses : actions/download-artifact@v6
310310 with :
311311 path : all-blob-reports
312312 pattern : blob-report-${{ matrix.version }}-*
@@ -318,7 +318,7 @@ jobs:
318318 npx playwright merge-reports --reporter json ./all-blob-reports > merged_reports.json
319319
320320 - name : Upload HTML report
321- uses : actions/upload-artifact@v4
321+ uses : actions/upload-artifact@v5
322322 with :
323323 name : html-report-${{ matrix.version }}-attempt-${{ github.run_attempt }}
324324 path : playwright-report
0 commit comments