From f3236d52bb48104d3087812accbd98de58aa49be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 00:13:55 +0000 Subject: [PATCH] chore(deps): bump actions/setup-node from 5 to 6 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 5 to 6. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5e2473..86b7679 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v5 - name: Set up Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 22 cache: npm @@ -56,7 +56,7 @@ jobs: retention-days: 7 # Notes on action versions: -# - actions/checkout@v5 and actions/setup-node@v5 use Node.js 24, addressing +# - actions/checkout@v5 and actions/setup-node@v6 use Node.js 24, addressing # the September 2025 Node 20 deprecation warning. # - actions/upload-artifact remains on v4 (the current major; v5 isn't out as # of this write). It runs on Node 20 internally — when v5 ships supporting