From 2f29ae1254f800741f691c7a74d268fe6d17e860 Mon Sep 17 00:00:00 2001 From: Roman Lemekha Date: Thu, 25 Jun 2026 15:16:54 +0200 Subject: [PATCH] fix: add Node.js 24.x setup to Dependabot validate workflow The ubuntu-latest runner currently defaults to Node.js 22.x, but some projects require Node.js 24.x. This adds an explicit Node.js setup step to ensure the validate job runs with the correct Node version. --- .github/workflows/dependabot-auto-merge.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index dfc10a3..a95ea0c 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -27,6 +27,11 @@ jobs: with: persist-credentials: false + - name: Setup Node.js 24.x + uses: actions/setup-node@v4 + with: + node-version: '24' + - name: Run validation # Pass the caller-supplied command via env so it is set as a string # value, never spliced into the script text. Interpolating