Skip to content

Bump pnpm/action-setup from 6 to 6.0.9 - #82

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

Bump pnpm/action-setup from 6 to 6.0.9#82
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/github_actions/pnpm/action-setup-6.0.9

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps pnpm/action-setup from 6 to 6.0.9.

Release notes

Sourced from pnpm/action-setup's releases.

v6.0.9

What's Changed

Full Changelog: pnpm/action-setup@v6...v6.0.9

v6.0.8

What's Changed

New Contributors

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

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

... (truncated)

Commits
  • 62bce64 fix: extract pnpm version from packageManager field instead of returning unde...
  • 58e6119 feat!: replace bundled pnpm binary with npm + lockfile bootstrap (#212)
  • 2e223e0 chore(workflows): adding pr-check.yaml to validate dist folder (#213)
  • fc06bc1 feat!: run the action on Node.js 24 (#205)
  • b906aff Revert "feat!: run the action on Node.js 24 (#205)"
  • See full diff 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)

Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 6 to 6.0.9.
- [Release notes](https://github.com/pnpm/action-setup/releases)
- [Commits](pnpm/action-setup@v6...v6.0.9)

---
updated-dependencies:
- dependency-name: pnpm/action-setup
  dependency-version: 6.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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 Aug 4, 2026
Copilot AI balanced review requested due to automatic review settings August 4, 2026 11:12
@dependabot
dependabot Bot requested a review from n-older as a code owner August 4, 2026 11:12
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 4, 2026

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

Note

Copilot could not run the full agentic suite for this review because it was automatically requested on a bot-authored pull request. Request a review from Copilot under Reviewers to retry with the full agentic suite. Improved support for bot-authored pull requests is coming soon.

Pins the pnpm/action-setup GitHub Action to a specific patch version for more deterministic CI runs.

Changes:

  • Update pnpm/action-setup from @v6 to @v6.0.9 in the matrix job
  • Update pnpm/action-setup from @v6 to @v6.0.9 in the non-matrix job

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread .github/workflows/ci.yml
Comment on lines 18 to 24
- uses: actions/checkout@v7

- name: Install pnpm
uses: pnpm/action-setup@v6
uses: pnpm/action-setup@v6.0.9

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v7

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Good catch — addressed in #83, which pins all three actions (actions/checkout, pnpm/action-setup, actions/setup-node) to full commit SHAs with trailing version comments rather than mixing exact versions and floating major tags. Closing this PR in favor of that one.

Comment thread .github/workflows/ci.yml
Comment on lines 46 to 50
- name: Install pnpm
uses: pnpm/action-setup@v6
uses: pnpm/action-setup@v6.0.9

- name: Use Node.js
uses: actions/setup-node@v7

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Good catch — addressed in #83, which pins all three actions (actions/checkout, pnpm/action-setup, actions/setup-node) to full commit SHAs with trailing version comments rather than mixing exact versions and floating major tags. Closing this PR in favor of that one.

Comment thread .github/workflows/ci.yml
Comment on lines 20 to +21
- name: Install pnpm
uses: pnpm/action-setup@v6
uses: pnpm/action-setup@v6.0.9

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Leaving the duplication as-is. YAML anchors aren't supported in Actions workflow files, so the only real options are a reusable workflow or a local composite action — and for three steps across two jobs, that indirection costs more in readability and Dependabot coverage (a nested action.yml needs its own directories entry in dependabot.yml) than the drift risk it removes. Worth revisiting if a third job appears.

Comment thread .github/workflows/ci.yml
Comment on lines 46 to +47
- name: Install pnpm
uses: pnpm/action-setup@v6
uses: pnpm/action-setup@v6.0.9

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Leaving the duplication as-is. YAML anchors aren't supported in Actions workflow files, so the only real options are a reusable workflow or a local composite action — and for three steps across two jobs, that indirection costs more in readability and Dependabot coverage (a nested action.yml needs its own directories entry in dependabot.yml) than the drift risk it removes. Worth revisiting if a third job appears.

@n-older

n-older commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Superseded by #83, which pins all three actions to commit SHAs instead of pinning just pnpm/action-setup to an exact tag — addressing the consistency point Copilot raised here.

Also worth noting: the v6 tag has been moved forward past v6.0.9 since this PR was opened and now resolves to v6.0.10, so merging this would have frozen CI one release behind the floating tag. #83 pins v6.0.10.

@dependabot ignore this minor version

@n-older n-older closed this Aug 5, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 5, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you about version 6.0.x again, unless you re-open this PR.

@dependabot
dependabot Bot deleted the dependabot/github_actions/pnpm/action-setup-6.0.9 branch August 5, 2026 13:58
@n-older

n-older commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

@dependabot unignore pnpm/action-setup

@dependabot @github

dependabot Bot commented on behalf of github Aug 5, 2026

Copy link
Copy Markdown
Contributor Author

OK, I will stop ignoring the pnpm/action-setup dependency.

@dependabot @github

dependabot Bot commented on behalf of github Aug 5, 2026

Copy link
Copy Markdown
Contributor Author

Looks like this PR is closed. If the branch still exists, you can re-open the PR and then use @dependabot rebase or @dependabot recreate. If the branch was deleted, Dependabot will create a new PR on the next scheduled run, or you can trigger an update from the Dependency graph page.

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.

2 participants