Skip to content

Commit 1df92a4

Browse files
authored
test(deps): update upload- & download-artifact to node24 versions (#1611)
Update actions/upload-artifact to v6 actions/download-artifact to v7
1 parent 9dc17a7 commit 1df92a4

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/example-build-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
build: npm run build
3434
working-directory: examples/nextjs
3535
- name: Store build artifacts
36-
uses: actions/upload-artifact@v4 # https://github.com/actions/upload-artifact
36+
uses: actions/upload-artifact@v6 # https://github.com/actions/upload-artifact
3737
with:
3838
name: app
3939
path: examples/nextjs/build
@@ -52,7 +52,7 @@ jobs:
5252
uses: actions/checkout@v6
5353

5454
- name: Restore build artifacts
55-
uses: actions/download-artifact@v4 # https://github.com/actions/download-artifact
55+
uses: actions/download-artifact@v7 # https://github.com/actions/download-artifact
5656
with:
5757
name: app
5858
path: examples/nextjs/build

.github/workflows/example-chrome.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# As of Cypress v8.0 the `cypress run` command
3737
# executes tests in `headless` mode by default
3838

39-
- uses: actions/upload-artifact@v4
39+
- uses: actions/upload-artifact@v6
4040
with:
4141
name: screenshots-headless-chrome
4242
path: examples/browser/cypress/screenshots
@@ -54,7 +54,7 @@ jobs:
5454
headed: true
5555
summary-title: 'Chrome headed'
5656

57-
- uses: actions/upload-artifact@v4
57+
- uses: actions/upload-artifact@v6
5858
with:
5959
name: screenshots-headed-chrome
6060
path: examples/browser/cypress/screenshots

.github/workflows/example-firefox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
browser: firefox
2424

2525
# report screenshot size and store the screenshots as test artifacts
26-
- uses: actions/upload-artifact@v4
26+
- uses: actions/upload-artifact@v6
2727
with:
2828
name: screenshots-in-firefox
2929
path: examples/browser/cypress/screenshots

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -636,14 +636,14 @@ jobs:
636636
- uses: actions/checkout@v6
637637
- uses: cypress-io/github-action@v6
638638
# after the test run completes store videos and any screenshots
639-
- uses: actions/upload-artifact@v4
639+
- uses: actions/upload-artifact@v6
640640
# add the line below to store screenshots only on failures
641641
# if: failure()
642642
with:
643643
name: cypress-screenshots
644644
path: cypress/screenshots
645645
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`
646-
- uses: actions/upload-artifact@v4
646+
- uses: actions/upload-artifact@v6
647647
with:
648648
name: cypress-videos
649649
path: cypress/videos
@@ -1441,7 +1441,7 @@ jobs:
14411441
runTests: false # only build app, don't test yet
14421442
build: npm run build
14431443
- name: Store build artifacts
1444-
uses: actions/upload-artifact@v4
1444+
uses: actions/upload-artifact@v6
14451445
with:
14461446
name: app
14471447
path: build
@@ -1454,7 +1454,7 @@ jobs:
14541454
steps:
14551455
- uses: actions/checkout@v6
14561456
- name: Restore build artifacts
1457-
uses: actions/download-artifact@v4
1457+
uses: actions/download-artifact@v7
14581458
with:
14591459
name: app
14601460
path: build

0 commit comments

Comments
 (0)