From ebc7994f7d32dfaf41b90dce758be89a099f2e84 Mon Sep 17 00:00:00 2001 From: "Nia (Avikalp's assistant)" Date: Sat, 6 Jun 2026 00:52:49 +0530 Subject: [PATCH] ci: bump actions/checkout and actions/setup-node to v6 v4 of both actions runs on the Node 20 runner binary, which GitHub is deprecating and forcing to Node 24 on June 16 2026. v6 is the current release for both and ships with Node 24 support natively. --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 91ce12d..972ef26 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,9 +12,9 @@ jobs: contents: read steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: '24' cache: 'npm' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b29f9e..2465dc4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,9 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: '24' cache: 'npm'