From 62f284ed2bf9c87c0d226ab8b8fd3811396eb6a4 Mon Sep 17 00:00:00 2001 From: Foysal Ahamed Date: Fri, 5 Apr 2024 21:24:00 +0200 Subject: [PATCH] :white_check_mark: Add artifacts --- .github/workflows/artifacts.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 7a2fdbf8..9405dc69 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -5,8 +5,8 @@ jobs: runs-on: ubuntu-20.04 name: Artifacts steps: - - uses: actions/checkout@v2 - - uses: cypress-io/github-action@v2 + - uses: actions/checkout@v3 + - uses: cypress-io/github-action@v5 with: env: lastName=Smith env: @@ -18,13 +18,13 @@ jobs: # thus we store screenshots only on failures # Alternative: create and commit an empty cypress/screenshots folder # to always have something to upload - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 if: failure() with: name: cypress-screenshots path: cypress/screenshots # Test run video was always captured, so this action uses "always()" condition - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 if: always() with: name: cypress-videos