From 77faee8aa713dd35a4486d5859c5694e880fb954 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 21:05:07 +0000 Subject: [PATCH] build(deps): bump actions/setup-node from 6 to 7 in the actions group Bumps the actions group with 1 update: [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/pages.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc7fe57..8ec126e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: - uses: actions/checkout@v7 - uses: pnpm/action-setup@v6 with: { version: 10 } - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: { node-version: 24 } - run: pnpm install --frozen-lockfile # Build first: the element/vue/react packages resolve @cluion/turing-core @@ -61,7 +61,7 @@ jobs: - run: composer update --prefer-dist --no-interaction - uses: pnpm/action-setup@v6 with: { version: 10 } - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: { node-version: 24 } # Build the browser widget; the testbench route serves it from dist. - run: pnpm install --frozen-lockfile && pnpm --filter @cluion/turing-core build diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 4e5ff4b..2972743 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v7 - uses: pnpm/action-setup@v6 with: { version: 10 } - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: { node-version: 24 } # Build the widget so the docs demo can serve it from public/, then the site. - run: pnpm install --frozen-lockfile && pnpm --filter @cluion/turing-core build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 95b958a..36a2d10 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v7 - uses: pnpm/action-setup@v6 with: { version: 10 } - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: { node-version: 24, registry-url: 'https://registry.npmjs.org' } - run: pnpm install --frozen-lockfile # -r publishes every public workspace package in dependency order