From b6f9b5a3a4e16f42ae6329e7493f9045f5daaece Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 12:55:41 +0200 Subject: [PATCH] Bump actions/setup-node from 5 to 7 (#228) 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 5 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=5&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/app-store-readiness.yml | 2 +- .github/workflows/ios-app-store-candidate.yml | 4 ++-- .github/workflows/ios-credential-health.yml | 2 +- .github/workflows/ios-device-debug.yml | 2 +- .github/workflows/ios-testflight.yml | 2 +- .github/workflows/mobile-artifacts.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/tests.yml | 10 +++++----- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/app-store-readiness.yml b/.github/workflows/app-store-readiness.yml index 91821ec8..fc79a3d9 100644 --- a/.github/workflows/app-store-readiness.yml +++ b/.github/workflows/app-store-readiness.yml @@ -32,7 +32,7 @@ jobs: persist-credentials: false - name: Setup Node.js - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: 22 diff --git a/.github/workflows/ios-app-store-candidate.yml b/.github/workflows/ios-app-store-candidate.yml index 1b737816..0ae96f74 100644 --- a/.github/workflows/ios-app-store-candidate.yml +++ b/.github/workflows/ios-app-store-candidate.yml @@ -32,7 +32,7 @@ jobs: persist-credentials: false - name: Setup Node.js - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: 22 @@ -131,7 +131,7 @@ jobs: bundler-cache: true - name: Setup Node.js - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: 22 diff --git a/.github/workflows/ios-credential-health.yml b/.github/workflows/ios-credential-health.yml index f105ff92..3796fcd7 100644 --- a/.github/workflows/ios-credential-health.yml +++ b/.github/workflows/ios-credential-health.yml @@ -49,7 +49,7 @@ jobs: persist-credentials: false - name: Setup Node.js - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: 22 diff --git a/.github/workflows/ios-device-debug.yml b/.github/workflows/ios-device-debug.yml index 3fb98152..3fa71628 100644 --- a/.github/workflows/ios-device-debug.yml +++ b/.github/workflows/ios-device-debug.yml @@ -163,7 +163,7 @@ jobs: echo "XCODE_VERSION=$xcode_version" >> "$GITHUB_ENV" - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v7 with: node-version: 22 cache: npm diff --git a/.github/workflows/ios-testflight.yml b/.github/workflows/ios-testflight.yml index ffdfeb9b..70466327 100644 --- a/.github/workflows/ios-testflight.yml +++ b/.github/workflows/ios-testflight.yml @@ -167,7 +167,7 @@ jobs: echo "IOS_SDK_VERSION=$sdk_version" >> "$GITHUB_ENV" - name: Setup Node.js - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: 22 cache: npm diff --git a/.github/workflows/mobile-artifacts.yml b/.github/workflows/mobile-artifacts.yml index b75e3dbf..1a01b183 100644 --- a/.github/workflows/mobile-artifacts.yml +++ b/.github/workflows/mobile-artifacts.yml @@ -102,7 +102,7 @@ jobs: - name: Setup Node.js if: steps.release-guard.outputs.current == 'true' - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: 22 cache: npm diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9cafbb89..d29a4968 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,7 +68,7 @@ jobs: - name: Setup Node.js if: steps.branch-head.outputs.current == 'true' - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: 22 cache: npm @@ -191,7 +191,7 @@ jobs: ref: ${{ env.RELEASE_COMMIT_SHA }} - name: Setup Node.js - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: 22 cache: npm diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bfecdd6c..e9847e74 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -83,7 +83,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v7 with: node-version: 22 @@ -125,7 +125,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v7 with: node-version: 22 @@ -226,7 +226,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v7 with: node-version: 22 @@ -436,7 +436,7 @@ jobs: echo "head=$head_ref" >> "$GITHUB_OUTPUT" - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v7 with: node-version: 22 @@ -662,7 +662,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v7 with: node-version: 22