From 06d7dfb21279d25412c4bffe8fe3eb644491b716 Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Tue, 24 Mar 2026 16:11:05 +0000 Subject: [PATCH] ci: upgrade e2e.yaml actions to Node.js 24-compatible versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update action versions ahead of GitHub's June 2, 2026 Node.js 20 deprecation: - actions/setup-node@v4 → @v6 - actions/upload-artifact@v4 → @v7 Co-Authored-By: Paperclip --- .github/workflows/e2e.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index a28cb07..4cda4d9 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -24,7 +24,7 @@ jobs: uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '22' cache: 'npm' @@ -64,7 +64,7 @@ jobs: run: scripts/teardown-e2e-headlamp.sh - name: Upload Playwright report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: failure() with: name: playwright-report @@ -72,7 +72,7 @@ jobs: retention-days: 7 - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: failure() with: name: test-results -- 2.52.0