Skip to content

Update CI configuration dependencies - #162

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/ci-configuration-dependencies
Aug 3, 2026
Merged

Update CI configuration dependencies#162
renovate[bot] merged 1 commit into
mainfrom
renovate/ci-configuration-dependencies

Conversation

@renovate

@renovate renovate Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change Pending
actions/setup-node action minor v6.4.0v6.5.0
github/codeql-action action patch v4.37.0v4.37.1 v4.37.5 (+3)
pypa/gh-action-pypi-publish action patch v1.14.0v1.14.1 v1.14.2
zizmorcore/zizmor-action action minor v0.5.7v0.6.0 v0.6.2 (+1)

Release Notes

actions/setup-node (actions/setup-node)

v6.5.0

Compare Source

What's Changed

Full Changelog: actions/setup-node@v6.4.0...v6.5.0

github/codeql-action (github/codeql-action)

v4.37.1

Compare Source

  • Upcoming breaking change: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. #​3956
  • Update default CodeQL bundle version to 2.26.1. #​4019
pypa/gh-action-pypi-publish (pypa/gh-action-pypi-publish)

v1.14.1

Compare 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-python from 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.

GH Sponsors badge

zizmorcore/zizmor-action (zizmorcore/zizmor-action)

v0.6.0

Compare Source

zizmor 1.27.0 is now the default version used by the action.

What's Changed

New Contributors

Full Changelog: zizmorcore/zizmor-action@v0.5.7...v0.6.0


Configuration

📅 Schedule: (in timezone Etc/UTC)

  • Branch creation
    • On day 3 and 22 of the month (* * 3,22 * *)
  • Automerge
    • At any time (no schedule defined)

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies label Aug 3, 2026
@github-actions

github-actions Bot commented Aug 3, 2026

Copy link
Copy Markdown

🔍 OpenCodeReview found 2 issue(s) in this PR.

  • ✅ Successfully posted inline: 1 comment(s)
  • 📝 In summary (no line info): 1 comment(s)

📄 .github/workflows/codeql-analysis.yml

⚠️ GitHub could not post this as an inline comment: No line information provided

Job lacks timeout-minutes. Without a timeout, a stuck workflow can consume runner resources indefinitely. Consider adding timeout-minutes: 30 (or appropriate value) to the job.

@renovate
renovate Bot force-pushed the renovate/ci-configuration-dependencies branch from d4a0b59 to ad315d1 Compare August 3, 2026 06:29
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

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

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

@renovate
renovate Bot merged commit 5858f1d into main Aug 3, 2026
20 checks passed
@renovate
renovate Bot deleted the renovate/ci-configuration-dependencies branch August 3, 2026 14:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants