5252 run : yarn run build:bundle-dev
5353 - name : artifact build result
5454 # see https://github.com/actions/upload-artifact
55- uses : actions/upload-artifact@v6
55+ uses : actions/upload-artifact@v7
5656 with :
5757 name : ${{ env.BUNDLES_DIR }}
5858 path : ${{ env.BUNDLES_DIR }}
6262 run : yarn run make-dist
6363 - name : artifact build result
6464 # see https://github.com/actions/upload-artifact
65- uses : actions/upload-artifact@v6
65+ uses : actions/upload-artifact@v7
6666 with :
6767 name : ${{ env.DIST_DIR }}
6868 path : ${{ env.DIST_DIR }}
@@ -104,7 +104,7 @@ jobs:
104104 eslint-report : ${{ env.REPORTS_DIR }}/eslint.json
105105 - name : artifact eslint result
106106 # see https://github.com/actions/upload-artifact
107- uses : actions/upload-artifact@v6
107+ uses : actions/upload-artifact@v7
108108 if : ${{ failure() }}
109109 with :
110110 name : ${{ env.STANDARD_REPORTS_ARTIFACT }}
@@ -172,7 +172,7 @@ jobs:
172172 uses : actions/checkout@v6
173173 - name : fetch build artifact
174174 # see https://github.com/actions/download-artifact
175- uses : actions/download-artifact@v7
175+ uses : actions/download-artifact@v8
176176 with :
177177 name : ${{ env.DIST_DIR }}
178178 path : ${{ env.DIST_DIR }}
@@ -228,7 +228,7 @@ jobs:
228228 run : yarn run setup-tests
229229 - name : fetch build artifact
230230 # see https://github.com/actions/download-artifact
231- uses : actions/download-artifact@v7
231+ uses : actions/download-artifact@v8
232232 with :
233233 name : ${{ env.BUNDLES_DIR }}
234234 path : ${{ env.BUNDLES_DIR }}
@@ -243,7 +243,7 @@ jobs:
243243 - name : artifact test reports
244244 if : ${{ ! cancelled() }}
245245 # see https://github.com/actions/upload-artifact
246- uses : actions/upload-artifact@v6
246+ uses : actions/upload-artifact@v7
247247 with :
248248 name : ' ${{ env.TESTS_REPORTS_ARTIFACT }}_${{ matrix.os }}_node${{ matrix.node-version }}'
249249 path : ${{ env.REPORTS_DIR }}
@@ -294,7 +294,7 @@ jobs:
294294 run : yarn install --no-immutable # we might be changing yarn version for tests -- require to ignore lock
295295 - name : fetch build artifact
296296 # see https://github.com/actions/download-artifact
297- uses : actions/download-artifact@v7
297+ uses : actions/download-artifact@v8
298298 with :
299299 name : ${{ env.BUILD_DIR }}
300300 path : ${{ env.BUILD_DIR }}
@@ -312,7 +312,7 @@ jobs:
312312 steps :
313313 - name : fetch test artifacts
314314 # see https://github.com/actions/download-artifact
315- uses : actions/download-artifact@v7
315+ uses : actions/download-artifact@v8
316316 with :
317317 pattern : ' ${{ env.TESTS_REPORTS_ARTIFACT }}_*'
318318 merge-multiple : true
0 commit comments