From 26ab2dea712601fd0d7284a81c87d6ac92d64e5e Mon Sep 17 00:00:00 2001 From: Mohamed Elmoslemany <117270519+mo-c4t@users.noreply.github.com> Date: Wed, 11 Dec 2024 23:53:44 +0300 Subject: [PATCH] update upload-artifact github action to v4 (#281) --- .github/workflows/cypress.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index ca606e3c..2cc094a9 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -63,17 +63,17 @@ jobs: # These extract all artifacts out from the container to git so they can be previewed - name: extract screenshots to git - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: - name: cypress-screenshots + name: cypress-screenshots_wallet path: camino-suite/cypress/screenshots # Test run video was always captured, so this action uses "always()" condition - name: extract videos to git - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: - name: cypress-videos + name: cypress-videos_wallet path: camino-suite/cypress/videos @@ -126,15 +126,15 @@ jobs: # These extract all artifacts out from the container to git so they can be previewed - name: extract screenshots to git - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: - name: cypress-screenshots + name: cypress-screenshots_explorer path: camino-suite/cypress/screenshots # Test run video was always captured, so this action uses "always()" condition - name: extract videos to git - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: - name: cypress-videos + name: cypress-videos_explorer path: camino-suite/cypress/videos