Bump the actions group with 4 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 3
(11 months ago)
(11 months ago)
dependencies github_actions
Bumps the actions group with 4 updates: actions/checkout, actions/download-artifact, marocchino/sticky-pull-request-comment and astral-sh/setup-uv.
Updates actions/checkout from 4 to 5
Release notes
Sourced from actions/checkout's releases.
v5.0.0
What's Changed
- Update actions checkout to use node 24 by
@salmanmkcin actions/checkout#2226- Prepare v5.0.0 release by
@salmanmkcin actions/checkout#2238⚠️ Minimum Compatible Runner Version
v2.327.1
Release NotesMake sure your runner is updated to this version or newer to use this release.
Full Changelog: https://github.com/actions/checkout/compare/v4...v5.0.0
v4.3.0
What's Changed
- docs: update README.md by
@motssin actions/checkout#1971- Add internal repos for checking out multiple repositories by
@mouismailin actions/checkout#1977- Documentation update - add recommended permissions to Readme by
@benwellsin actions/checkout#2043- Adjust positioning of user email note and permissions heading by
@joshmgrossin actions/checkout#2044- Update README.md by
@nebuk89in actions/checkout#2194- Update CODEOWNERS for actions by
@TingluoHuangin actions/checkout#2224- Update package dependencies by
@salmanmkcin actions/checkout#2236- Prepare release v4.3.0 by
@salmanmkcin actions/checkout#2237New Contributors
@motssmade their first contribution in actions/checkout#1971@mouismailmade their first contribution in actions/checkout#1977@benwellsmade their first contribution in actions/checkout#2043@nebuk89made their first contribution in actions/checkout#2194@salmanmkcmade their first contribution in actions/checkout#2236Full Changelog: https://github.com/actions/checkout/compare/v4...v4.3.0
v4.2.2
What's Changed
url-helper.tsnow leverages well-known environment variables by@jww3in actions/checkout#1941- Expand unit test coverage for
isGhesby@jww3in actions/checkout#1946Full Changelog: https://github.com/actions/checkout/compare/v4.2.1...v4.2.2
v4.2.1
What's Changed
- Check out other refs/* by commit if provided, fall back to ref by
@orhantoyin actions/checkout#1924New Contributors
@Jcambassmade their first contribution in actions/checkout#1919Full Changelog: https://github.com/actions/checkout/compare/v4.2.0...v4.2.1
... (truncated)
Changelog
Sourced from actions/checkout's changelog.
Changelog
V5.0.0
- Update actions checkout to use node 24 by
@salmanmkcin actions/checkout#2226V4.3.0
- docs: update README.md by
@motssin actions/checkout#1971- Add internal repos for checking out multiple repositories by
@mouismailin actions/checkout#1977- Documentation update - add recommended permissions to Readme by
@benwellsin actions/checkout#2043- Adjust positioning of user email note and permissions heading by
@joshmgrossin actions/checkout#2044- Update README.md by
@nebuk89in actions/checkout#2194- Update CODEOWNERS for actions by
@TingluoHuangin actions/checkout#2224- Update package dependencies by
@salmanmkcin actions/checkout#2236v4.2.2
url-helper.tsnow leverages well-known environment variables by@jww3in actions/checkout#1941- Expand unit test coverage for
isGhesby@jww3in actions/checkout#1946v4.2.1
- Check out other refs/* by commit if provided, fall back to ref by
@orhantoyin actions/checkout#1924v4.2.0
- Add Ref and Commit outputs by
@lucacomein actions/checkout#1180- Dependency updates by
@dependabot- actions/checkout#1777, actions/checkout#1872v4.1.7
- Bump the minor-npm-dependencies group across 1 directory with 4 updates by
@dependabotin actions/checkout#1739- Bump actions/checkout from 3 to 4 by
@dependabotin actions/checkout#1697- Check out other refs/* by commit by
@orhantoyin actions/checkout#1774- Pin actions/checkout's own workflows to a known, good, stable version. by
@jww3in actions/checkout#1776v4.1.6
- Check platform to set archive extension appropriately by
@cory-millerin actions/checkout#1732v4.1.5
- Update NPM dependencies by
@cory-millerin actions/checkout#1703- Bump github/codeql-action from 2 to 3 by
@dependabotin actions/checkout#1694- Bump actions/setup-node from 1 to 4 by
@dependabotin actions/checkout#1696- Bump actions/upload-artifact from 2 to 4 by
@dependabotin actions/checkout#1695- README: Suggest
user.emailto be41898282+github-actions[bot]@users.noreply.github.comby@cory-millerin actions/checkout#1707v4.1.4
- Disable
extensions.worktreeConfigwhen disablingsparse-checkoutby@jww3in actions/checkout#1692- Add dependabot config by
@cory-millerin actions/checkout#1688- Bump the minor-actions-dependencies group with 2 updates by
@dependabotin actions/checkout#1693- Bump word-wrap from 1.2.3 to 1.2.5 by
@dependabotin actions/checkout#1643v4.1.3
... (truncated)
Commits
08c6903Prepare v5.0.0 release (#2238)9f26565Update actions checkout to use node 24 (#2226)- See full diff 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
- Update README.md by
@nebuk89in actions/download-artifact#407- BREAKING fix: inconsistent path behavior for single artifact downloads by ID by
@GrantBirkiin actions/download-artifact#416v5.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 topath/(direct)- By ID:
artifact-ids: 12345→ extracted topath/my-artifact/(nested)Now both methods are consistent:
- By name:
name: my-artifact→ extracted topath/(unchanged)- By ID:
artifact-ids: 12345→ extracted topath/(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: trueas 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-artifactis the name of the artifact you previously uploadedTo maintain old behavior (if needed):
</tr></table>
... (truncated)
Commits
634f93cMerge pull request #416 from actions/single-artifact-id-download-pathb19ff43refactor: resolve download path correctly in artifact download tests (mainly ...e262cbebundle distbff23f9update docsfff8c14fix download path logic when downloading a single artifact by id448e3f8Merge pull request #407 from actions/nebuk89-patch-147225c4Update README.md- See full diff in compare view
Updates marocchino/sticky-pull-request-comment from 2.9.1 to 2.9.4
Release notes
Sourced from marocchino/sticky-pull-request-comment's releases.
v2.9.4
What's Changed
- build(deps-dev): Bump
@biomejs/biomefrom 2.0.0 to 2.0.2 by@dependabot[bot] in marocchino/sticky-pull-request-comment#1554- build(deps-dev): Bump
@types/nodefrom 24.0.3 to 24.0.11 by@dependabot[bot] in marocchino/sticky-pull-request-comment#1561- build(deps-dev): Bump
@biomejs/biomefrom 2.0.4 to 2.1.1 by@dependabot[bot] in marocchino/sticky-pull-request-comment#1562- build(deps-dev): Bump
@types/nodefrom 24.0.11 to 24.0.12 by@dependabot[bot] in marocchino/sticky-pull-request-comment#1563- build(deps-dev): Bump
@types/nodefrom 24.0.12 to 24.0.13 by@dependabot[bot] in marocchino/sticky-pull-request-comment#1564Full Changelog: https://github.com/marocchino/sticky-pull-request-comment/compare/v2.9.3...v2.9.4
v2.9.3
What's Changed
- Update deps (including security issues)
- Test with vitest instead of jest
- Use biome
Full Changelog: https://github.com/marocchino/sticky-pull-request-comment/compare/v2.9.2...v2.9.3
v2.9.2
What's Changed
- Update
@octokit/graphql-schema& use biome by@marocchinoin marocchino/sticky-pull-request-comment#1517- build(deps): Bump undici from 5.28.4 to 5.28.5 by
@dependabotin marocchino/sticky-pull-request-comment#1476- build(deps-dev): Bump
@types/nodefrom 22.10.7 to 22.14.0 by@dependabotin marocchino/sticky-pull-request-comment#1515- build(deps): Bump
@octokit/request-errorfrom 5.0.1 to 5.1.1 by@dependabotin marocchino/sticky-pull-request-comment#1490- build(deps): Bump
@octokit/requestfrom 8.1.4 to 8.4.1 by@dependabotin marocchino/sticky-pull-request-comment#1494- build(deps): Bump
@octokit/plugin-paginate-restfrom 9.1.2 to 9.2.2 by@dependabotin marocchino/sticky-pull-request-comment#1493Full Changelog: https://github.com/marocchino/sticky-pull-request-comment/compare/v2.9.1...v2.9.2
Commits
7737449📦️ Build8b423c6Merge pull request #1564 from marocchino/dependabot/npm_and_yarn/types/node-2...3ac8a74build(deps-dev): Bump@types/nodefrom 24.0.12 to 24.0.13e430cfcMerge pull request #1563 from marocchino/dependabot/npm_and_yarn/types/node-2...99f9378build(deps-dev): Bump@types/nodefrom 24.0.11 to 24.0.122216b3aMerge pull request #1562 from marocchino/dependabot/npm_and_yarn/biomejs/biom...482d7fdbuild(deps-dev): Bump@biomejs/biomefrom 2.0.4 to 2.1.1c2da581Merge pull request #1561 from marocchino/dependabot/npm_and_yarn/types/node-2...76f8462build(deps-dev): Bump@types/nodefrom 24.0.3 to 24.0.11246151a⬆️ Update biome- Additional commits viewable in compare view
Updates astral-sh/setup-uv from 6.4.3 to 6.6.1
Release notes
Sourced from astral-sh/setup-uv's releases.
v6.6.1 🌈 Fix exclusions in cache-dependency-glob
Changes
Exclusions with a leading
!in the cache-dependency-glob did not work and got fixed with this release. Thank you@KnisterPeterfor raising this!🐛 Bug fixes
- Fix exclusions in cache-dependency-glob
@eifinger(#546)🧰 Maintenance
- Bump dependencies
@eifinger(#547)- chore: update known versions for 0.8.14 @github-actions[bot] (#543)
- chore: update known versions for 0.8.13 @github-actions[bot] (#536)
v6.5.0 🌈 Better error messages, bug fixes and copilot agent settings
Changes
This release brings better error messages in case the GitHub API is impacted, fixes a few bugs and allows to disable problem matchers for better use in Copilot Agent workspaces.
🐛 Bug fixes
- Improve error messages on GitHub API errors
@eifinger(#518)- Ignore backslashes and whitespace in requirements
@axm2(#501)🚀 Enhancements
- Add input add-problem-matchers
@eifinger(#517)🧰 Maintenance
- chore: update known versions for 0.8.9 @github-actions[bot] (#512)
- chore: update known versions for 0.8.6-0.8.8 @github-actions[bot] (#510)
- chore: update known versions for 0.8.5 @github-actions[bot] (#509)
- chore: update known versions for 0.8.4 @github-actions[bot] (#505)
- chore: update known versions for 0.8.3 @github-actions[bot] (#502)
📚 Documentation
- add note on caching to read disable-cache-pruning
@eifinger(#506)⬆️ Dependency updates
- Bump actions/checkout from 4 to 5 @dependabot[bot] (#514)
- bump dependencies
@eifinger(#516)- Bump biome to v2
@eifinger(#515)
Commits
557e51dBump dependencies (#547)1b46e13Fix exclusions in cache-dependency-glob (#546)26cf676chore: update known versions for 0.8.14 (#543)4e1e303chore: update known versions for 0.8.13 (#536)4959332Bump dependencies (#532)adeb286Add support for .tools-versions (#531)fce199eAdd log message before long API calls to GitHub (#530)f758a4achore: update known versions for 0.8.12 (#529)c0e7e93chore: update known versions for 0.8.11 (#526)fda2399chore: update known versions for 0.8.10 (#525)- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Pull Request Statistics
0
0
+0
-0
Package Dependencies
actions
2.9.1 → 2.9.4
Patch
Technical Details
| ID: | 7320890 |
| UUID: | 3376846912 |
| Node ID: | PR_kwDOHXMFac6mf9a7 |
| Host: | GitHub |
| Repository: | python/typing_extensions |