From dd5eade3e081002ec35ebd934a69e4d096affc97 Mon Sep 17 00:00:00 2001 From: Manuel Rauber Date: Thu, 30 Apr 2026 10:27:04 +0200 Subject: [PATCH] fix: use up to date actions/setup-node The current version of actions/setup-node produces a warning: > Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/setup-node@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Updating the usage to v6 removes the warning. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 8d8ab10..2c88cf7 100644 --- a/action.yml +++ b/action.yml @@ -48,7 +48,7 @@ runs: using: "composite" steps: - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ inputs.node-version }}