5151 steps :
5252 # https://github.com/actions/checkout
5353 - name : Checkout codebase
54- uses : actions/checkout@v4
54+ uses : actions/checkout@v6
5555
5656 # https://github.com/actions/setup-node
5757 - name : Install Node.js ${{ matrix.node-version }}
@@ -113,7 +113,7 @@ jobs:
113113 # so that it can be shared with the 'codecov' job (see below)
114114 # NOTE: Angular CLI only supports code coverage for specs. See https://github.com/angular/angular-cli/issues/6286
115115 - name : Upload code coverage report to Artifact
116- uses : actions/upload-artifact@v4
116+ uses : actions/upload-artifact@v7
117117 if : matrix.node-version == '20.x'
118118 with :
119119 name : coverage-report-${{ matrix.node-version }}
@@ -155,7 +155,7 @@ jobs:
155155 # Cypress always creates a video of all e2e tests (whether they succeeded or failed)
156156 # Save those in an Artifact
157157 - name : Upload e2e test videos to Artifacts
158- uses : actions/upload-artifact@v4
158+ uses : actions/upload-artifact@v7
159159 if : always()
160160 with :
161161 name : e2e-test-videos-${{ matrix.node-version }}
@@ -164,7 +164,7 @@ jobs:
164164 # If e2e tests fail, Cypress creates a screenshot of what happened
165165 # Save those in an Artifact
166166 - name : Upload e2e test failure screenshots to Artifacts
167- uses : actions/upload-artifact@v4
167+ uses : actions/upload-artifact@v7
168168 if : failure()
169169 with :
170170 name : e2e-test-screenshots-${{ matrix.node-version }}
@@ -316,19 +316,19 @@ jobs:
316316 runs-on : ubuntu-latest
317317 steps :
318318 - name : Checkout
319- uses : actions/checkout@v4
319+ uses : actions/checkout@v6
320320
321321 # Download artifacts from previous 'tests' job
322322 - name : Download coverage artifacts
323- uses : actions/download-artifact@v4
323+ uses : actions/download-artifact@v8
324324
325325 # Now attempt upload to Codecov using its action.
326326 # NOTE: We use a retry action to retry the Codecov upload if it fails the first time.
327327 #
328328 # Retry action: https://github.com/marketplace/actions/retry-action
329329 # Codecov action: https://github.com/codecov/codecov-action
330330 - name : Upload coverage to Codecov.io
331- uses : Wandalen/wretry.action@v1.3 .0
331+ uses : Wandalen/wretry.action@v3.8 .0
332332 with :
333333 action : codecov/codecov-action@v4
334334 # Ensure codecov-action throws an error when it fails to upload
0 commit comments