Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2025

Bumps the all-dependencies group with 6 updates in the / directory:

Package From To
actions/checkout 4 5
jdx/mise-action 2 3
actions/setup-python 5 6
actions/download-artifact 4 5
infisical/secrets-action 1.0.9 1.0.15
codecov/codecov-action 5.4.3 5.5.1

Updates actions/checkout from 4 to 5

Release notes

Sourced from actions/checkout's releases.

v5.0.0

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

Full Changelog: actions/checkout@v4...v5.0.0

v4.3.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v4...v4.3.0

v4.2.2

What's Changed

Full Changelog: actions/checkout@v4.2.1...v4.2.2

v4.2.1

What's Changed

New Contributors

Full Changelog: actions/checkout@v4.2.0...v4.2.1

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

V5.0.0

V4.3.0

v4.2.2

v4.2.1

v4.2.0

v4.1.7

v4.1.6

v4.1.5

v4.1.4

v4.1.3

... (truncated)

Commits

Updates jdx/mise-action from 2 to 3

Release notes

Sourced from jdx/mise-action's releases.

v3.0.0

What's Changed

New Contributors

Full Changelog: jdx/mise-action@v2...v3.0.0

v2.4.4

What's Changed

Full Changelog: jdx/mise-action@v2.4.3...v2.4.4

v2.4.3

What's Changed

Full Changelog: jdx/mise-action@v2.4.2...v2.4.3

v2.4.2

What's Changed

Full Changelog: jdx/mise-action@v2.4.0...v2.4.2

v2.4.0

What's Changed

Full Changelog: jdx/mise-action@v2.3.1...v2.4.0

v2.3.1

Full Changelog: jdx/mise-action@v2.3.0...v2.3.1

v2.3.0

What's Changed

... (truncated)

Changelog

Sourced from jdx/mise-action's changelog.

3.2.0 - 2025-08-22

🚀 Features

🐛 Bug Fixes


3.1.0 - 2025-08-19

🚀 Features


3.0.2 - 2025-08-18

⚙️ Miscellaneous Tasks


3.0.1 - 2025-08-18

📚 Documentation

⚙️ Miscellaneous Tasks


3.0.0 - 2025-08-18

🚀 Features

New Contributors


2.4.4 - 2025-07-27

... (truncated)

Commits
  • 5ac50f7 chore: release v3.2.0 (#251)
  • 5e785b7 fix: redact secret values from env (#252)
  • 8a7168b chore(deps): update actions/checkout digest to 08eba0b (#248)
  • 9582efc chore(deps): update amannn/action-semantic-pull-request digest to e32d7e6 (#249)
  • 0f242c8 feat: add environment variable support to cache key templates (#250)
  • ca0c5fc chore: release v3.1.0 (#247)
  • d53c31b feat: add configurable cache key with template variable support (#246)
  • c0b8518 chore: release v3.0.2 (#245)
  • 7081572 chore: remove duplicate release-plz logic
  • a2de727 chore: release v3.0.1 (#243)
  • Additional commits viewable in compare view

Updates actions/setup-python from 5 to 6

Release notes

Sourced from actions/setup-python's releases.

v6.0.0

What's Changed

Breaking Changes

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Enhancements:

Bug fixes:

Dependency updates:

New Contributors

Full Changelog: actions/setup-python@v5...v6.0.0

v5.6.0

What's Changed

Full Changelog: actions/setup-python@v5...v5.6.0

v5.5.0

What's Changed

Enhancements:

Bug fixes:

... (truncated)

Commits
  • e797f83 Upgrade to node 24 (#1164)
  • 3d1e2d2 Revert "Enhance cache-dependency-path handling to support files outside the w...
  • 65b0712 Clarify pythonLocation behavior for PyPy and GraalPy in environment variables...
  • 5b668cf Bump actions/checkout from 4 to 5 (#1181)
  • f62a0e2 Change missing cache directory error to warning (#1182)
  • 9322b3c Upgrade setuptools to 78.1.1 to fix path traversal vulnerability in PackageIn...
  • fbeb884 Bump form-data to fix critical vulnerabilities #182 & #183 (#1163)
  • 03bb615 Bump idna from 2.9 to 3.7 in /tests/data (#843)
  • 36da51d Add version parsing from Pipfile (#1067)
  • 3c6f142 update documentation (#1156)
  • Additional commits viewable in compare view

Updates actions/download-artifact from 4 to 5

Release notes

Sourced from actions/download-artifact's releases.

v5.0.0

What's Changed

v5.0.0

🚨 Breaking Change

This release fixes an inconsistency in path behavior for single artifact downloads by ID. If you're downloading single artifacts by ID, the output path may change.

What Changed

Previously, single artifact downloads behaved differently depending on how you specified the artifact:

  • By name: name: my-artifact → extracted to path/ (direct)
  • By ID: artifact-ids: 12345 → extracted to path/my-artifact/ (nested)

Now both methods are consistent:

  • By name: name: my-artifact → extracted to path/ (unchanged)
  • By ID: artifact-ids: 12345 → extracted to path/ (fixed - now direct)

Migration Guide

✅ No Action Needed If:
  • You download artifacts by name
  • You download multiple artifacts by ID
  • You already use merge-multiple: true as a workaround
⚠️ Action Required If:

You download single artifacts by ID and your workflows expect the nested directory structure.

Before v5 (nested structure):

- uses: actions/download-artifact@v4
  with:
    artifact-ids: 12345
    path: dist
# Files were in: dist/my-artifact/

Where my-artifact is the name of the artifact you previously uploaded

To maintain old behavior (if needed):

</tr></table> 

... (truncated)

Commits
  • 634f93c Merge pull request #416 from actions/single-artifact-id-download-path
  • b19ff43 refactor: resolve download path correctly in artifact download tests (mainly ...
  • e262cbe bundle dist
  • bff23f9 update docs
  • fff8c14 fix download path logic when downloading a single artifact by id
  • 448e3f8 Merge pull request #407 from actions/nebuk89-patch-1
  • 47225c4 Update README.md
  • See full diff in compare view

Updates infisical/secrets-action from 1.0.9 to 1.0.15

Release notes

Sourced from infisical/secrets-action's releases.

v1.0.15

What's Changed

Full Changelog: Infisical/secrets-action@v1.0.14...v1.0.15

v1.0.14

What's Changed

Full Changelog: Infisical/secrets-action@v1.0.13...v1.0.14

v1.0.13

What's Changed

Full Changelog: Infisical/secrets-action@v1.0.12...v1.0.13

v1.0.12

What's Changed

New Contributors

Full Changelog: Infisical/secrets-action@v1.0.11...v1.0.12

v1.0.11

What's Changed

New Contributors

Full Changelog: Infisical/secrets-action@v1.0.10...v1.0.11

v1.0.10

What's Changed

New Contributors

Full Changelog: Infisical/secrets-action@v1.0.9...v1.0.10

Commits

Updates codecov/codecov-action from 5.4.3 to 5.5.1

Release notes

Sourced from codecov/codecov-action's releases.

v5.5.1

What's Changed

New Contributors

Full Changelog: codecov/codecov-action@v5.5.0...v5.5.1

v5.5.0

What's Changed

New Contributors

Full Changelog: codecov/codecov-action@v5.4.3...v5.5.0

Changelog

Sourced from codecov/codecov-action's changelog.

v5.5.1

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.5.0..v5.5.1

v5.5.0

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.3..v5.5.0

v5.4.3

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3

v5.4.2

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.1..v5.4.2

v5.4.1

... (truncated)

Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `4` | `5` |
| [jdx/mise-action](https://github.com/jdx/mise-action) | `2` | `3` |
| [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `5` |
| [infisical/secrets-action](https://github.com/infisical/secrets-action) | `1.0.9` | `1.0.15` |
| [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.4.3` | `5.5.1` |



Updates `actions/checkout` from 4 to 5
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4...v5)

Updates `jdx/mise-action` from 2 to 3
- [Release notes](https://github.com/jdx/mise-action/releases)
- [Changelog](https://github.com/jdx/mise-action/blob/main/CHANGELOG.md)
- [Commits](jdx/mise-action@v2...v3)

Updates `actions/setup-python` from 5 to 6
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v5...v6)

Updates `actions/download-artifact` from 4 to 5
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v4...v5)

Updates `infisical/secrets-action` from 1.0.9 to 1.0.15
- [Release notes](https://github.com/infisical/secrets-action/releases)
- [Commits](Infisical/secrets-action@v1.0.9...v1.0.15)

Updates `codecov/codecov-action` from 5.4.3 to 5.5.1
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@18283e0...5a10915)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: jdx/mise-action
  dependency-version: '3'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: actions/setup-python
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: actions/download-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: infisical/secrets-action
  dependency-version: 1.0.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: codecov/codecov-action
  dependency-version: 5.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

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 Oct 1, 2025
Copy link

vercel bot commented Oct 1, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
promptfiddle Ready Ready Preview Comment Oct 1, 2025 1:24am

@dependabot dependabot bot had a problem deploying to boundary-tools-dev October 1, 2025 01:07 Failure
@dependabot dependabot bot had a problem deploying to boundary-tools-dev October 1, 2025 01:07 Failure
@dependabot dependabot bot had a problem deploying to boundary-tools-dev October 1, 2025 01:07 Failure
Copy link

🔒 Entelligence AI Vulnerability Scanner

No security vulnerabilities found!

Your code passed our comprehensive security analysis.


Copy link

Review Summary

🏷️ Draft Comments (3)

Skipped posting 3 draft comments that were valid but scored below your review threshold (>=10/15). Feel free to update them here.

.github/workflows/build-jetbrains-release.reusable.yaml (1)

41-49: actions/checkout is updated to v5, which requires GitHub Actions runner version >= v2.327.1; using an older runner will cause the workflow to fail at checkout.

📊 Impact Scores:

  • Production Impact: 4/5
  • Fix Specificity: 2/5
  • Urgency Impact: 3/5
  • Total Score: 9/15

🤖 AI Agent Prompt (Copy & Paste Ready):

Check that the GitHub Actions runner used for this workflow is version v2.327.1 or newer, as actions/checkout@v5 requires this minimum runner version. If your runner is older, update it to avoid workflow failures at the checkout step. File: .github/workflows/build-jetbrains-release.reusable.yaml, lines 41-49.

.github/workflows/build-ruby-release.reusable.yaml (1)

119-119: actions/upload-artifact@v4 is used instead of the latest v5, missing out on major performance and reliability improvements for large artifact uploads.

📊 Impact Scores:

  • Production Impact: 2/5
  • Fix Specificity: 5/5
  • Urgency Impact: 2/5
  • Total Score: 9/15

🤖 AI Agent Prompt (Copy & Paste Ready):

Update the GitHub Actions workflow in .github/workflows/build-ruby-release.reusable.yaml at line 119 to use actions/upload-artifact@v5 instead of v4. This ensures improved performance and reliability for artifact uploads, especially for large files. Change the uses line to 'uses: actions/upload-artifact@v5'.

.github/workflows/build-vscode-release.reusable.yaml (1)

215-252: actions/upload-artifact@v4 is used instead of @v5, missing out on performance and reliability improvements for large artifact uploads.

📊 Impact Scores:

  • Production Impact: 2/5
  • Fix Specificity: 5/5
  • Urgency Impact: 2/5
  • Total Score: 9/15

🤖 AI Agent Prompt (Copy & Paste Ready):

Update .github/workflows/build-vscode-release.reusable.yaml lines 215-252: Replace all instances of `uses: actions/upload-artifact@v4` with `uses: actions/upload-artifact@v5` to leverage improved performance and reliability for large artifact uploads.

🔍 Comments beyond diff scope (1)
.github/workflows/build-typescript-release.reusable.yaml (1)

89-89: container: ${{ matrix._.container }} is set unconditionally, but not all matrix entries define container, causing jobs to fail with 'container' is not a string error in GitHub Actions.
Category: correctness


Copy link

LGTM 👍

Copy link

codecov bot commented Oct 1, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

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.

0 participants