Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/example-build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
build: npm run build
working-directory: examples/nextjs
- name: Store build artifacts
uses: actions/upload-artifact@v4 # https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v5 # https://github.com/actions/upload-artifact
with:
name: app
path: examples/nextjs/build
Expand All @@ -52,7 +52,7 @@ jobs:
uses: actions/checkout@v5

- name: Restore build artifacts
uses: actions/download-artifact@v4 # https://github.com/actions/download-artifact
uses: actions/download-artifact@v6 # https://github.com/actions/download-artifact
with:
name: app
path: examples/nextjs/build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/example-chrome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# As of Cypress v8.0 the `cypress run` command
# executes tests in `headless` mode by default

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: screenshots-headless-chrome
path: examples/browser/cypress/screenshots
Expand All @@ -54,7 +54,7 @@ jobs:
headed: true
summary-title: 'Chrome headed'

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: screenshots-headed-chrome
path: examples/browser/cypress/screenshots
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example-firefox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
browser: firefox

# report screenshot size and store the screenshots as test artifacts
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: screenshots-in-firefox
path: examples/browser/cypress/screenshots
Expand Down