Update CI configuration dependencies - #162
Merged
Merged
Conversation
|
🔍 OpenCodeReview found 2 issue(s) in this PR.
📄
|
renovate
Bot
force-pushed
the
renovate/ci-configuration-dependencies
branch
from
August 3, 2026 06:29
d4a0b59 to
ad315d1
Compare
Comment on lines
43
to
48
| steps: | ||
| - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 | ||
| - uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0 | ||
| - uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # v1.14.1 | ||
| with: | ||
| packages-dir: artifact/ | ||
| print-hash: true |
There was a problem hiding this comment.
The packages-dir: artifact/ points to a non-existent directory. The upload-artifact step uploads ./dist (line 35), which gets extracted to the runner's current working directory after download, resulting in ./dist (not ./artifact/). This will cause the publish step to fail.
Fix: Change packages-dir: artifact/ to packages-dir: ./dist
Suggestion:
Suggested change
| steps: | |
| - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 | |
| - uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0 | |
| - uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # v1.14.1 | |
| with: | |
| packages-dir: artifact/ | |
| print-hash: true | |
| steps: | |
| - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 | |
| - uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # v1.14.1 | |
| with: | |
| packages-dir: ./dist | |
| print-hash: true |
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR contains the following updates:
v6.4.0→v6.5.0v4.37.0→v4.37.1v4.37.5(+3)v1.14.0→v1.14.1v1.14.2v0.5.7→v0.6.0v0.6.2(+1)Release Notes
actions/setup-node (actions/setup-node)
v6.5.0Compare Source
What's Changed
Full Changelog: actions/setup-node@v6.4.0...v6.5.0
github/codeql-action (github/codeql-action)
v4.37.1Compare Source
pypa/gh-action-pypi-publish (pypa/gh-action-pypi-publish)
v1.14.1Compare Source
This release was cut at EuroPython 2026 Sprints
🛠️ Internal Dependencies
@adisivaprasad💰 helped get rid of the GitHub Actions runner warning about the old Node 20 runtime being used by updating
actions/setup-pythonfrom v5.6.0 to v6.2.0 in #408.💪 New Contributors
🪞 Full Diff: pypa/gh-action-pypi-publish@v1.14.0...v1.14.1
🧔♂️ Release Manager: @webknjaz 🇺🇦
🙏 Special Thanks to @jylenhof💰 for reminding me to work on this release!
💬 Discuss on Bluesky 🦋, on Mastodon 🐘 and on GitHub.
zizmorcore/zizmor-action (zizmorcore/zizmor-action)
v0.6.0Compare Source
zizmor 1.27.0 is now the default version used by the action.
What's Changed
collectinput by @woodruffw in #139New Contributors
Full Changelog: zizmorcore/zizmor-action@v0.5.7...v0.6.0
Configuration
📅 Schedule: (in timezone Etc/UTC)
* * 3,22 * *)🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.