From d3fb055df4fd45255ad094e02958f76d93408b45 Mon Sep 17 00:00:00 2001 From: Sven Date: Sat, 14 Mar 2026 23:17:18 +0100 Subject: [PATCH] chore: upgrade checkout and setup-node actions to v4 Addresses Node.js 20 deprecation warning in GitHub Actions runners. actions/checkout and actions/setup-node v4 use Node.js 24-compatible runtimes, ahead of the June 2026 forced migration. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e41090fc..0746378b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,10 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '18'