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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
Comment thread
coderabbitai[bot] marked this conversation as resolved.
with:
persist-credentials: false

# Pinned to the packageManager version, not "latest". bun.lock was
# resolved by this version, and a newer bun can dedupe transitive
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
# distinguish, and approving costs one click.
environment: npm-publish
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
persist-credentials: false

# Pinned to the packageManager version — see the note in ci.yml.
- uses: oven-sh/setup-bun@v2
Expand All @@ -40,7 +42,7 @@ jobs:
# configured — npm detects the OIDC environment and uses trusted
# publishing instead. package-manager-cache is off because a restored npm
# cache can shadow the CLI upgrade below.
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
# Trusted publishing requires Node >= 22.14.0; "22" resolves to the
# latest 22.x, which satisfies that floor.
Expand Down