From ca725ec831e4102eac3cddbca9d5ead41eaa0113 Mon Sep 17 00:00:00 2001 From: Samantha Date: Thu, 8 Feb 2024 15:53:27 -0500 Subject: [PATCH] Update github action versions to remove warning (#5) --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d889c279..99e45f48 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,8 +8,8 @@ jobs: test: 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: 20 - name: Install dependencies @@ -18,7 +18,7 @@ jobs: run: npx playwright install --with-deps - name: Run Playwright tests run: npm test - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report