From da0049d540c67c4c23aacc2bda7201699acf5d8b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 14:33:36 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pull-request-test.yml | 2 +- .github/workflows/renku-dev-test.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request-test.yml b/.github/workflows/pull-request-test.yml index c944e05c61..3fa08837e2 100644 --- a/.github/workflows/pull-request-test.yml +++ b/.github/workflows/pull-request-test.yml @@ -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 diff --git a/.github/workflows/renku-dev-test.yaml b/.github/workflows/renku-dev-test.yaml index 614135973e..a6a93caa15 100644 --- a/.github/workflows/renku-dev-test.yaml +++ b/.github/workflows/renku-dev-test.yaml @@ -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