Skip to content

Commit

Permalink
[ci] Bump actions/upload-artifact to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Feb 17, 2024
1 parent 14b92a5 commit bc47442
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/end-to-end-testing-oracle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ jobs:
install: false
working-directory: ./ui
- name: upload Cypress screenshots for failed tests
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: ui/cypress/screenshots

# Test run video was always captured, so this action uses "always()" condition
- name: upload Cypress test run video
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/end-to-end-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ jobs:
install: false
working-directory: ./ui
- name: upload Cypress screenshots for failed tests
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: ui/cypress/screenshots

# Test run video was always captured, so this action uses "always()" condition
- name: upload Cypress test run video
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos
Expand Down

0 comments on commit bc47442

Please sign in to comment.