Merged
Conversation
Reviewer's GuideThis PR updates pinned versions (commit SHAs) of several GitHub Actions across workflows and composite actions to their latest major/minor releases, without changing workflow logic or behavior. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've found 1 issue
Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments
### Comment 1
<location> `.github/workflows/release.yaml:20-23` </location>
<code_context>
- run: pipx run build
- - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
+ - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: distfiles
path: dist/
</code_context>
<issue_to_address>
**suggestion:** Consider tightening upload-artifact behavior for missing files after the major version bump.
Given the major version bump of `actions/upload-artifact`, consider explicitly setting `if-no-files-found: error` (or your preferred behavior) so missing `dist/` artifacts fail the workflow rather than silently succeeding, and to avoid any surprises if defaults change in future versions.
```suggestion
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: distfiles
path: dist/
if-no-files-found: error
```
</issue_to_address>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
020be21 to
7258e2e
Compare
|
Deploy preview for website ready! ✅ Preview Built with commit 6a2683a. |
6a2683a to
7258e2e
Compare
nothing-991
pushed a commit
to nothing-991/python-poetry
that referenced
this pull request
Feb 3, 2026
|
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Summary by Sourcery
Update GitHub Actions workflows and composite actions to use newer major versions of upstream actions.
Build: