Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22.14.0"
node-version: "22.23.1"
cache: 'pnpm'

- name: Install dependencies
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22.14.0"
node-version: "22.23.1"
cache: 'pnpm'

- name: Install dependencies
Expand All @@ -79,7 +79,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22.14.0"
node-version: "22.23.1"
cache: 'pnpm'

- name: Install dependencies
Expand All @@ -105,7 +105,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22.14.0"
node-version: "22.23.1"
cache: 'pnpm'

- name: Install dependencies
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,15 @@ jobs:
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22.14.0"
node-version: "22.23.1"
# No registry-url - using OIDC trusted publishing instead
# No cache - mitigates cache-poisoning risk in publish workflow

- name: Update npm for trusted publishing
run: npm install -g npm@latest
# Pin the major: each npm major raises its minimum Node version, so
# `npm@latest` silently breaks this job whenever a new major lands
# (npm 12 requires Node ^22.22.2). Bump this alongside node-version.
run: npm install -g npm@12

- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand Down