-
Notifications
You must be signed in to change notification settings - Fork 3
Bump pnpm/action-setup from 6 to 6.0.9 #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,7 @@ jobs: | |
| - 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 | ||
|
Comment on lines
18
to
24
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch — addressed in #83, which pins all three actions ( |
||
|
|
@@ -44,7 +44,7 @@ jobs: | |
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Install pnpm | ||
| uses: pnpm/action-setup@v6 | ||
| uses: pnpm/action-setup@v6.0.9 | ||
|
Comment on lines
46
to
+47
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 |
||
|
|
||
| - name: Use Node.js | ||
| uses: actions/setup-node@v7 | ||
|
Comment on lines
46
to
50
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch — addressed in #83, which pins all three actions ( |
||
|
|
||
There was a problem hiding this comment.
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.ymlneeds its owndirectoriesentry independabot.yml) than the drift risk it removes. Worth revisiting if a third job appears.