From ff977a3db5e95a1ced0710cc4f4e8032fad1f0de Mon Sep 17 00:00:00 2001 From: soyuka Date: Fri, 29 May 2026 15:43:01 +0200 Subject: [PATCH] ci: bump actions/setup-node to v6 for Node 24 runtime Address GitHub Actions Node 20 deprecation warning. Node 20 will be forced to Node 24 by default starting June 2nd, 2026 and removed from runners on September 16th, 2026. The other `setup-node` instance in the same workflow is already on v6. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2204b7748..ff108304e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -224,7 +224,7 @@ jobs: composer global config allow-plugins.soyuka/pmu true --no-interaction composer global link . - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '20' - name: Install Redocly CLI