From d41c424f10fd44aee9b5c916cc5b0ef711746044 Mon Sep 17 00:00:00 2001 From: Gil Barbara Date: Wed, 21 Feb 2024 16:29:48 -0300 Subject: [PATCH] Update GH Actions workflow --- .github/workflows/main.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1a6df45a..95ff6524 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,17 +29,17 @@ jobs: timezone: America/Sao_Paulo - name: Setup repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 16 + node-version: 20 registry-url: 'https://registry.npmjs.org' - name: Cache Packages id: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -56,7 +56,8 @@ jobs: run: npm run validate timeout-minutes: 5 - - uses: actions/upload-artifact@v3 + - name: Save Playwright Report + uses: actions/upload-artifact@v4 if: always() with: name: playwright-report