From 1524f1c966d9f8ac9e29cf35bdf700a59f2db553 Mon Sep 17 00:00:00 2001 From: Petr Jasek Date: Mon, 7 Oct 2024 10:23:27 +0200 Subject: [PATCH] fix --- .github/workflows/ci-e2e.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-e2e.yml b/.github/workflows/ci-e2e.yml index c7ed15527..07a9a498e 100644 --- a/.github/workflows/ci-e2e.yml +++ b/.github/workflows/ci-e2e.yml @@ -21,8 +21,8 @@ jobs: run: working-directory: ./e2e steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Build server @@ -41,7 +41,7 @@ jobs: run: npm run cypress-ci -- --spec "cypress/e2e/!(events)/*.cy.ts|cypress/e2e/workqueue.cy.ts" - name: Upload screenshots if: ${{ failure() }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: screenshots-e2e-${{ matrix.e2e }} path: /tmp/cypress/**/*.png