From bc0b036bd0e65264648fc0f618dc5367c76a9a20 Mon Sep 17 00:00:00 2001 From: Omar Musayev Date: Mon, 1 Jun 2026 22:20:04 -0700 Subject: [PATCH] =?UTF-8?q?ci:=20bump=20checkout/setup-node=20v4=20?= =?UTF-8?q?=E2=86=92=20v6=20(Node=2024=20runtime)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub is deprecating the Node 20 action runtime (forced to Node 24 from 2026-06-16). v6 of both actions runs on Node 24; our usage (node-version, cache: npm, default checkout) is unchanged. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e479b28..87ace2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,9 +34,9 @@ jobs: node: '20' experimental: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: ${{ matrix.node }} cache: npm @@ -57,9 +57,9 @@ jobs: name: audit (production deps) 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: '20' cache: npm