From 56139762db51058084e61db40be3d7edec2334f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Sep 2026 19:01:22 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 4 updates Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node), [pnpm/action-setup](https://github.com/pnpm/action-setup) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) Updates `actions/setup-node` from 4 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v7) Updates `pnpm/action-setup` from 4 to 6 - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v4...v6) Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pnpm/action-setup dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/examples.yml | 10 +++++----- .github/workflows/nightly.yml | 6 +++--- .github/workflows/publish.yml | 8 ++++---- .github/workflows/verify.yml | 12 ++++++------ 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 7f2aa1ad6..4baf1d853 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -25,8 +25,8 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 90 steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 with: node-version-file: .tool-versions @@ -60,9 +60,9 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v7 + - uses: pnpm/action-setup@v6 + - uses: actions/setup-node@v7 with: node-version-file: .tool-versions cache: pnpm diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 091479c76..920220884 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -21,9 +21,9 @@ jobs: node: [22, 24] name: Node ${{ matrix.node }} steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v7 + - uses: pnpm/action-setup@v6 + - uses: actions/setup-node@v7 with: node-version: ${{ matrix.node }} cache: pnpm diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c52576a89..cd13c4b20 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -55,10 +55,10 @@ jobs: # 15 s - it is slow to resolve a fresh version some days) sit on top of the build. timeout-minutes: 90 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - - uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v4 + - uses: pnpm/action-setup@v6 + - uses: actions/setup-node@v7 with: node-version-file: .tool-versions registry-url: https://registry.npmjs.org @@ -76,7 +76,7 @@ jobs: # the occt package names them with their SHA-256 and where they are published, and the fetch # verifies what is present and downloads what is not. Cached on the manifest's hash so a # rebuild, and only a rebuild, downloads again. - - uses: actions/cache@v4 + - uses: actions/cache@v6 with: key: occt-kernels-${{ hashFiles('packages/dev/occt/kernels.json') }} path: packages/dev/occt/bitbybit-dev-occt*/*.wasm diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index be3323627..830e1afe0 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -29,12 +29,12 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # pnpm's version comes from the packageManager field; Node's from .tool-versions, the one pin # mise and asdf read on a developer's machine as well. - - uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v4 + - uses: pnpm/action-setup@v6 + - uses: actions/setup-node@v7 with: node-version-file: .tool-versions cache: pnpm @@ -45,7 +45,7 @@ jobs: # the occt package names them with their SHA-256 and where they are published, and the fetch # verifies what is present and downloads what is not. Cached on the manifest's hash so a # rebuild, and only a rebuild, downloads again. - - uses: actions/cache@v4 + - uses: actions/cache@v6 with: key: occt-kernels-${{ hashFiles('packages/dev/occt/kernels.json') }} path: packages/dev/occt/bitbybit-dev-occt*/*.wasm @@ -134,8 +134,8 @@ jobs: run: working-directory: docs steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 with: node-version-file: .tool-versions cache: npm