ci: bump pnpm/action-setup from 5.0.0 to 6.0.5 - #368
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Conversation
Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 5.0.0 to 6.0.5. - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](pnpm/action-setup@fc06bc1...8912a91) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-version: 6.0.5 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
|
Contributor
|
Deploy preview for team-scope-test ready!
Deployed with vercel-action |
Contributor
|
Deploy preview for zeit-now-deployment-action-example-angular ready!
Deployed with vercel-action |
There was a problem hiding this comment.
No issues found across 4 files
Architecture diagram
sequenceDiagram
participant GHA as GitHub Actions Runner
participant Checkout as actions/checkout
participant Setup as pnpm/action-setup
participant Node as Node.js Runtime
participant Npm as npm (co-located)
participant Path as System PATH
participant PnpmCLI as pnpm CLI
Note over GHA, PnpmCLI: CI Pipeline - pnpm Action Setup Flow
GHA->>Checkout: Trigger job step
Checkout-->>GHA: Repository files
GHA->>Setup: Execute pnpm/action-setup@v6.0.5
Note over Setup: CHANGED: Uses v6 action (was v5)
Setup->>Setup: CHANGED: Append (not prepend) action node dir to PATH
Note over Setup: Fixes npm bootstrap ordering
Setup->>Node: Locate co-located Node.js binary
Node-->>Setup: Node binary path
alt npm bootstrap needed
Setup->>Npm: Use npm co-located with action node binary
Note over Setup: CHANGED: Uses co-located npm (not system npm)
Npm->>Npm: Bootstrap pnpm via npm install -g
Npm->>Path: CHANGED: Append node dir to PATH
Note over Npm, Path: Prevents shadowing of pnpm self-update binary
else direct pnpm version set
Setup->>PnpmCLI: Install specified pnpm version (10.15.0)
end
Setup->>Path: Add pnpm to PATH
Path-->>Setup: Updated PATH
Setup->>PnpmCLI: Verify pnpm installation
PnpmCLI-->>Setup: pnpm version confirmed
Setup-->>GHA: Action complete - pnpm ready
GHA->>PnpmCLI: Execute subsequent workflow steps (install, build, test)
Auto-approved: Safe CI-only update to pnpm/action-setup from v5.0.0 to v6.0.5 with fixes and no breaking changes. Blast radius limited to GitHub Actions workflows; any issues would be caught by CI itself.
Contributor
Author
|
Superseded by #371. |
dependabot
Bot
deleted the
dependabot/github_actions/pnpm/action-setup-6.0.5
branch
May 12, 2026 02:07
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Bumps pnpm/action-setup from 5.0.0 to 6.0.5.
Release notes
Sourced from pnpm/action-setup's releases.
Commits
8912a91fix: append (not prepend) action node dir to PATH for npm bootstrap (#241)26f6d4ffix: use npm co-located with the action node binary (#239)903f9c1fix: update pnpm to 11.0.0-rc.5bdf0af2test: add strict version-match jobs to reproduce #225 / #22771c9247fix: pnpm self-update binary shadowed by bootstrap on PATH (#230)078e9d4fix: update pnpm to 11.0.0-rc.208c4be7docs(README): update action-setup version5798914chore: update .gitignoreddffd66fix: remove accidentally committed fileb43f991fix: update pnpm to 11.0.0-rc.0Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by cubic
Update GitHub Actions to use
pnpm/action-setupv6.0.5 (was v5.0.0) across CI and example workflows to improve PATH handling and use the co-located npm for more reliable bootstraps. We still install pnpm 10.15.0; no workflow changes needed.Written for commit ed905b3. Summary will update on new commits.