Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 60
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
Expand All @@ -74,7 +74,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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down