Skip to content

Commit d983df9

Browse files
chore(deps): update github artifact actions
1 parent 1bf19d6 commit d983df9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.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@v5 # 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@v5
5353

5454
- name: Restore build artifacts
55-
uses: actions/download-artifact@v4 # https://github.com/actions/download-artifact
55+
uses: actions/download-artifact@v6 # 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@v5
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@v5
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@v5
2727
with:
2828
name: screenshots-in-firefox
2929
path: examples/browser/cypress/screenshots

0 commit comments

Comments
 (0)