Skip to content

Commit

Permalink
chore(deps): bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and rokroskar committed Dec 19, 2023
1 parent 9c1f74f commit da0049d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
sphinx-build -nNW -b spelling -d _build/doctrees . _build/spelling
sphinx-build -qnNW . _build/html
- name: Upload docs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success()
with:
name: docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/renku-dev-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:
working-directory: cypress-tests
# NOTE: cypress screenshots will be generated only if the test failed
# thus we store screenshots only on failures
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress-tests/cypress/screenshots
retention-days: 7
# Cypress test video is always captured, so this action uses "always()" condition
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos
Expand Down

0 comments on commit da0049d

Please sign in to comment.