From 8ebae0a7770befd9313abac833b17c33cdff8c60 Mon Sep 17 00:00:00 2001 From: Sagar Date: Mon, 10 Feb 2025 17:34:15 +0100 Subject: [PATCH 1/2] chore: artifact version upgraded from 3 to 4 --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 6596a96..c9b2932 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -26,7 +26,7 @@ jobs: continue-on-error: ${{ matrix.project == 'webkit' }} - name: Upload test results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-results-${{ matrix.project }} path: test-results From 86d3f5254a97135387bd66e899f2ee7fd67696b6 Mon Sep 17 00:00:00 2001 From: Sagar Date: Mon, 10 Feb 2025 17:51:17 +0100 Subject: [PATCH 2/2] chore: upgraded checkout and setup node actions --- .github/workflows/e2e.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index c9b2932..aba5156 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -11,8 +11,8 @@ jobs: project: [chromium, firefox, webkit] fail-fast: false steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 18.x - name: Install dependencies