Skip to content

ci: bump pnpm/action-setup from 5.0.0 to 6.0.5 - #368

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/github_actions/pnpm/action-setup-6.0.5
Closed

ci: bump pnpm/action-setup from 5.0.0 to 6.0.5#368
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/github_actions/pnpm/action-setup-6.0.5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 4, 2026

Copy link
Copy Markdown
Contributor

Bumps pnpm/action-setup from 5.0.0 to 6.0.5.

Release notes

Sourced from pnpm/action-setup's releases.

v6.0.5

What's Changed

Full Changelog: pnpm/action-setup@v6.0.4...v6.0.5

v6.0.4

What's Changed

New Contributors

Full Changelog: pnpm/action-setup@v6.0.3...v6.0.4

v6.0.3

Updated pnpm to v11.0.0-rc.5

Full Changelog: pnpm/action-setup@v6.0.2...v6.0.3

v6.0.2

What's Changed

New Contributors

Full Changelog: pnpm/action-setup@v6.0.1...v6.0.2

v6.0.1

Update pnpm to v11.0.0-rc.2. pnpm-lock.yaml will not be saved with two documents unless the packageManager is set via devEngines.packageManager. Related issue: pnpm/action-setup#228

v6.0.0

Added support for pnpm v11.

Commits
  • 8912a91 fix: append (not prepend) action node dir to PATH for npm bootstrap (#241)
  • 26f6d4f fix: use npm co-located with the action node binary (#239)
  • 903f9c1 fix: update pnpm to 11.0.0-rc.5
  • bdf0af2 test: add strict version-match jobs to reproduce #225 / #227
  • 71c9247 fix: pnpm self-update binary shadowed by bootstrap on PATH (#230)
  • 078e9d4 fix: update pnpm to 11.0.0-rc.2
  • 08c4be7 docs(README): update action-setup version
  • 5798914 chore: update .gitignore
  • ddffd66 fix: remove accidentally committed file
  • b43f991 fix: update pnpm to 11.0.0-rc.0
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will 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-setup v6.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.

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>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels May 4, 2026
@sonarqubecloud

sonarqubecloud Bot commented May 4, 2026

Copy link
Copy Markdown

@github-actions

github-actions Bot commented May 4, 2026

Copy link
Copy Markdown
Contributor

Deploy preview for team-scope-test ready!

Project:team-scope-test
Status: ✅  Deploy successful!
Preview URL:https://team-scope-test-2zo09l798-dietfriends.vercel.app
Latest Commit:ed905b3

Deployed with vercel-action

@github-actions

github-actions Bot commented May 4, 2026

Copy link
Copy Markdown
Contributor

Deploy preview for zeit-now-deployment-action-example-angular ready!

Project:zeit-now-deployment-action-example-angular
Status: ✅  Deploy successful!
Preview URL:https://zeit-now-deployment-action-example-angular-ey3dm29u7.vercel.app
Latest Commit:ed905b3
Alias:https://staging.angular.vercel-action.amond.dev
Alias:https://pr-368.angular.vercel-action.amond.dev

Deployed with vercel-action

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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)
Loading

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.

@dependabot @github

dependabot Bot commented on behalf of github May 12, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #371.

@dependabot dependabot Bot closed this May 12, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/pnpm/action-setup-6.0.5 branch May 12, 2026 02:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants