From b9dc585989d05d06e3286e18b1e1f113c26498dd Mon Sep 17 00:00:00 2001 From: Noel De Martin Date: Sun, 28 Jan 2024 10:16:58 +0100 Subject: [PATCH] Update CI versions --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5416e75..182d8bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,8 +6,8 @@ jobs: ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' - run: npm ci @@ -16,13 +16,13 @@ jobs: - run: npm run test:ci - run: npm run cy:test-snapshots:ci - name: Upload Cypress screenshots - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() }} with: name: cypress_screenshots path: cypress/screenshots - name: Upload Cypress snapshots - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() }} with: name: cypress_snapshots