Skip to content

ci: bump pnpm/action-setup from 5.0.0 to 6.0.7 - #371

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

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

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps pnpm/action-setup from 5.0.0 to 6.0.7.

Release notes

Sourced from pnpm/action-setup's releases.

v6.0.7

What's Changed

New Contributors

Full Changelog: pnpm/action-setup@v6.0.6...v6.0.7

v6.0.6

What's Changed

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

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

... (truncated)

Commits
  • 739bfe4 fix: self-update bootstrap to packageManager-pinned version (#233) (#256)
  • f61705d chore: add CODEOWNERS
  • 7a5507b fix: restore inputs from state in post (#255)
  • 1155470 fix: honor devEngines.packageManager.onFail=error (#252) (#254)
  • 91ab88e fix: bin_dest output points to self-updated pnpm, not bootstrap (#249)
  • e578e19 fix: update pnpm to 11.0.4
  • 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
  • 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 workflows to use pnpm/action-setup v6.0.7 instead of v5.0.0. This brings fixes for PATH/npm resolution, honors devEngines.packageManager error settings, and ensures self-updates follow the packageManager-pinned version.

Written for commit 617112c. Summary will update on new commits.

Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 5.0.0 to 6.0.7.
- [Release notes](https://github.com/pnpm/action-setup/releases)
- [Commits](pnpm/action-setup@fc06bc1...739bfe4)

---
updated-dependencies:
- dependency-name: pnpm/action-setup
  dependency-version: 6.0.7
  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 12, 2026
@sonarqubecloud

Copy link
Copy Markdown

@github-actions

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-hqpxslmkz-dietfriends.vercel.app
Latest Commit:617112c

Deployed with vercel-action

@github-actions

github-actions Bot commented May 12, 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-pbxd5js5g.vercel.app
Latest Commit:617112c
Alias:https://staging.angular.vercel-action.amond.dev
Alias:https://pr-371.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 GH as GitHub Actions Runner
    participant Checkout as actions/checkout
    participant PnpmSetup as pnpm/action-setup@v6.0.7
    participant NodeSetup as actions/setup-node
    participant BuildSteps as Build & Test Steps

    Note over GH,BuildSteps: CI Workflow Execution (per job)

    GH->>Checkout: Execute checkout step
    Checkout-->>GH: Repository code on disk

    GH->>PnpmSetup: Execute pnpm/action-setup@v6.0.7
    Note right of PnpmSetup: CHANGED: v5.0.0 -> v6.0.7

    alt v6.0.7: Self-update uses packageManager-pinned version
        PnpmSetup->>PnpmSetup: Read devEngines.packageManager from package.json
        PnpmSetup->>PnpmSetup: Download pnpm version pinned by packageManager field
        Note right of PnpmSetup: Ensures bootstrap matches project's pinned pnpm
    else v5.0.0: Self-update used fixed bootstrap version
        PnpmSetup->>PnpmSetup: Download static bootstrap version
    end

    alt v6.0.7: honor devEngines.packageManager.onFail=error
        PnpmSetup->>PnpmSetup: Check onFail setting
        alt onFail=error
            PnpmSetup->>PnpmSetup: Fail workflow if version mismatch
        else no error setting
            PnpmSetup->>PnpmSetup: Proceed with installed version
        end
    end

    PnpmSetup-->>GH: pnpm installed & on PATH, outputs (bin_dest, etc.)

    GH->>NodeSetup: Execute setup-node
    NodeSetup-->>GH: Node.js installed

    GH->>BuildSteps: Run cache, install, lint, test steps
    BuildSteps->>PnpmSetup: Use pnpm binary from PATH
    Note right of PnpmSetup: v6.0.7: bin_dest points to self-updated pnpm, not bootstrap
    BuildSteps-->>GH: Build output

    opt Post-job cleanup
        PnpmSetup-->>PnpmSetup: Restore inputs from saved state
    end
Loading

Auto-approved: This is a routine Dependabot update of a GitHub Actions step (pnpm/action-setup) from v5.0.0 to v6.0.7 across four workflow files, making only commit SHA and version comment changes with no impact on business logic, data, or production infrastructure.

@dependabot @github

dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #375.

@dependabot dependabot Bot closed this May 19, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/pnpm/action-setup-6.0.7 branch May 19, 2026 04:31
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