From 8a3dc923b35333a007ce82458104c2015700291f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Sep 2025 14:29:08 -0700 Subject: [PATCH] Bump actions/setup-node from 4 to 5 in /.github/workflows (#2318) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 5.
Release notes

Sourced from actions/setup-node's releases.

v5.0.0

What's Changed

Breaking Changes

This update, introduces automatic caching when a valid packageManager field is present in your package.json. This aims to improve workflow performance and make dependency management more seamless. To disable this automatic caching, set package-manager-cache: false

steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
  with:
    package-manager-cache: false

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Dependency Upgrades

New Contributors

Full Changelog: https://github.com/actions/setup-node/compare/v4...v5.0.0

v4.4.0

What's Changed

Bug fixes:

Enhancement:

Dependency update:

New Contributors

Full Changeloghttps://github.com/actions/setup-node/compare/v4...v4.4.0

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=4&new-version=5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-helper.yml | 2 +- .github/workflows/bump-version.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/deploy-docsite.yml | 2 +- .github/workflows/testdriver-build.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-helper.yml b/.github/workflows/build-helper.yml index a63815cc0..70f1785f1 100644 --- a/.github/workflows/build-helper.yml +++ b/.github/workflows/build-helper.yml @@ -64,7 +64,7 @@ jobs: go-version: ${{env.GO_VERSION}} cache-dependency-path: | go.sum - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: ${{env.NODE_VERSION}} - name: Install Yarn diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 49d99c542..466c1ebf9 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -39,7 +39,7 @@ jobs: token: ${{ steps.app-token.outputs.token }} # General build dependencies - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: ${{env.NODE_VERSION}} - name: Install Yarn diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f5319fa2a..9ac62e3c0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -71,7 +71,7 @@ jobs: version: 3.x repo-token: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: ${{env.NODE_VERSION}} - name: Install yarn diff --git a/.github/workflows/deploy-docsite.yml b/.github/workflows/deploy-docsite.yml index deb4716a1..5b86b4876 100644 --- a/.github/workflows/deploy-docsite.yml +++ b/.github/workflows/deploy-docsite.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v5 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: ${{env.NODE_VERSION}} - name: Install Task diff --git a/.github/workflows/testdriver-build.yml b/.github/workflows/testdriver-build.yml index 2954c4742..9a8c054b1 100644 --- a/.github/workflows/testdriver-build.yml +++ b/.github/workflows/testdriver-build.yml @@ -47,7 +47,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version: ${{env.GO_VERSION}} - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: ${{env.NODE_VERSION}} - name: Install Yarn