From f5ef002905b75290fbf067d0edff61713a144824 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Jul 2026 21:28:02 +0200 Subject: [PATCH] Bump actions/setup-node from 6 to 7 (#4204) 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 6 to 7.
Release notes

Sourced from actions/setup-node's releases.

v7.0.0

What's Changed

Enhancements:

Bug fixes:

Documentation updates:

Dependency update:

New Contributors

Full Changelog: https://github.com/actions/setup-node/compare/v6...v7.0.0

v6.5.0

What's Changed

Full Changelog: https://github.com/actions/setup-node/compare/v6.4.0...v6.5.0

v6.4.0

What's Changed

Dependency updates:

New Contributors

Full Changelog: https://github.com/actions/setup-node/compare/v6...v6.4.0

v6.3.0

What's Changed

Enhancements:

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=6&new-version=7)](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 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/automated-tests.yaml | 6 +++--- .github/workflows/electron-rebuild.yaml | 2 +- .github/workflows/release-notes.yaml | 2 +- .github/workflows/spellcheck.yaml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/automated-tests.yaml b/.github/workflows/automated-tests.yaml index d77e964a..0abd9686 100644 --- a/.github/workflows/automated-tests.yaml +++ b/.github/workflows/automated-tests.yaml @@ -24,7 +24,7 @@ jobs: - name: "Checkout code" uses: actions/checkout@v7 - name: "Use Node.js" - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: lts/* cache: "npm" @@ -47,7 +47,7 @@ jobs: echo "Minimal node version is $NODE_VERSION" echo "version=$NODE_VERSION" >> $GITHUB_OUTPUT - name: Set up Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: ${{ steps.get-version.outputs.version }} - name: "Install dependencies" @@ -67,7 +67,7 @@ jobs: - name: "Checkout code" uses: actions/checkout@v7 - name: "Use Node.js ${{ matrix.node-version }}" - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: ${{ matrix.node-version }} check-latest: true diff --git a/.github/workflows/electron-rebuild.yaml b/.github/workflows/electron-rebuild.yaml index b8c7fc32..ebfa33a2 100644 --- a/.github/workflows/electron-rebuild.yaml +++ b/.github/workflows/electron-rebuild.yaml @@ -16,7 +16,7 @@ jobs: - name: Checkout code uses: actions/checkout@v7 - name: "Use Node.js ${{ matrix.node-version }}" - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: ${{ matrix.node-version }} check-latest: true diff --git a/.github/workflows/release-notes.yaml b/.github/workflows/release-notes.yaml index 29418f90..96149b33 100644 --- a/.github/workflows/release-notes.yaml +++ b/.github/workflows/release-notes.yaml @@ -23,7 +23,7 @@ jobs: with: fetch-depth: "0" - name: "Use Node.js" - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: lts/* cache: "npm" diff --git a/.github/workflows/spellcheck.yaml b/.github/workflows/spellcheck.yaml index e3654fd8..8d33bf70 100644 --- a/.github/workflows/spellcheck.yaml +++ b/.github/workflows/spellcheck.yaml @@ -19,7 +19,7 @@ jobs: with: ref: develop - name: Set up Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: lts/* check-latest: true