Bump the actions group across 1 directory with 7 updates
Type: Pull Request
State: Merged
Association: Contributor
Comments: 0
(10 months ago)
(10 months ago)
(10 months ago)
by dstansby
CI: Run cibuildwheel CI: Run cygwin dependencies github_actions
Bumps the actions group with 7 updates in the / directory:
| Package | From | To |
|---|---|---|
| actions/checkout | 4.2.2 |
5.0.0 |
| actions/download-artifact | 4.3.0 |
5.0.0 |
| pypa/cibuildwheel | 3.0.1 |
3.1.3 |
| scientific-python/circleci-artifacts-redirector-action | 1.1.0 |
1.2.0 |
| github/codeql-action | 3.29.3 |
3.29.8 |
| actions/cache | 4.2.3 |
4.2.4 |
| actions/first-interaction | 2.0.0 |
3.0.0 |
Updates actions/checkout from 4.2.2 to 5.0.0
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
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)08eba0bPrepare release v4.3.0 (#2237)631c7dcUpdate package dependencies (#2236)8edcb1bUpdate CODEOWNERS for actions (#2224)09d2acaUpdate README.md (#2194)85e6279Adjust positioning of user email note and permissions heading (#2044)009b9aeDocumentation update - add recommended permissions to Readme (#2043)cbb7224Update README.md (#1977)3b9b8c8docs: update README.md (#1971)- See full diff in compare view
Updates actions/download-artifact from 4.3.0 to 5.0.0
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 pypa/cibuildwheel from 3.0.1 to 3.1.3
Release notes
Sourced from pypa/cibuildwheel's releases.
v3.1.3
- 🐛 Fix bug where "latest" dependencies couldn't update to pip 25.2 on Windows (#2537)
- 🛠 Use pytest-rerunfailures to improve some of our iOS/Android tests (#2527, #2539)
- 🛠 Remove some GraalPy Windows workarounds in our tests (#2501)
v3.1.2
- ⚠️ Add an error if
CIBW_FREE_THREADING_SUPPORTis set; you are likely missing 3.13t wheels, please use theenable/CIBW_ENABLE(#2520)- 🛠
riscv64now enabled if you target that architecture, it's now supported on PyPI (#2509)- 🛠 Add warning when using
cpython-experimental-riscv64(no longer needed) (#2526, #2528)- 🛠 iOS versions bumped, fixing issues with 3.14 (now RC 1) (#2530)
- 🐛 Fix bug in Android running wheel from our GitHub Action (#2517)
- 🐛 Fix warning when using
test-skipof"*-macosx_universal2:arm64"(#2522)- 🐛 Fix incorrect number of wheels reported in logs, again (#2517)
- 📚 We welcome our Android platform maintainer (#2516)
v3.1.1
- 🐛 Fix a bug showing an incorrect wheel count at the end of execution, and misrepresenting test-only runs in the GitHub Action summary (#2512)
- 📚 Docs fix (#2510)
v3.1.0
- 🌟 CPython 3.14 wheels are now built by default - without the
"cpython-prerelease"enableset. It's time to build and upload these wheels to PyPI! This release includes CPython 3.14.0rc1, which is guaranteed to be ABI compatible with the final release. (#2507) Free-threading is no longer experimental in 3.14, so you have to skip it explicitly with'cp31?t-*'if you don't support it yet. (#2503)- 🌟 Adds the ability to build wheels for Android! Set the
platformoption toandroidon Linux or macOS to try it out! (#2349)- 🌟 Adds Pyodide 0.28, which builds 3.13 wheels (#2487)
- ✨ Support for 32-bit
manylinux_2_28(now a consistent default) andmanylinux_2_34added (#2500)- 🛠 Improved summary, will also use markdown summary output on GHA (#2469)
- 🛠 The riscv64 images now have a working default (as they are now part of pypy/manylinux), but are still experimental (and behind an
enable) since you can't push them to PyPI yet (#2506)- 🛠 Fixed a typo in the 3.9 MUSL riscv64 identifier (
cp39-musllinux_ricv64->cp39-musllinux_riscv64) (#2490)- 🛠 Mistyping
--onlynow shows the correct possibilities, and even suggests near matches on Python 3.14+ (#2499)- 🛠 Only support one output from the repair step on linux like other platforms; auditwheel fixed this over four years ago! (#2478)
- 🛠 We now use pattern matching extensively (#2434)
- 📚 We now have platform maintainers for our special platforms and interpreters! (#2481)
Changelog
Sourced from pypa/cibuildwheel's changelog.
title: Changelog
Changelog
v3.1.3
1 August 2025
- 🐛 Fix bug where "latest" dependencies couldn't update to pip 25.2 on Windows (#2537)
- 🛠 Use pytest-rerunfailures to improve some of our iOS/Android tests (#2527, #2539)
- 🛠 Remove some GraalPy Windows workarounds in our tests (#2501)
v3.1.2
29 July 2025
- ⚠️ Add an error if
CIBW_FREE_THREADING_SUPPORTis set; you are likely missing 3.13t wheels, please use theenable/CIBW_ENABLE(#2520)- 🛠
riscv64now enabled if you target that architecture, it's now supported on PyPI (#2509)- 🛠 Add warning when using
cpython-experimental-riscv64(no longer needed) (#2526, #2528)- 🛠 iOS versions bumped, fixing issues with 3.14 (now RC 1) (#2530)
- 🐛 Fix bug in Android running wheel from our GitHub Action (#2517)
- 🐛 Fix warning when using
test-skipof"*-macosx_universal2:arm64"(#2522)- 🐛 Fix incorrect number of wheels reported in logs, again (#2517)
- 📚 We welcome our Android platform maintainer (#2516)
v3.1.1
24 July 2025
- 🐛 Fix a bug showing an incorrect wheel count at the end of execution, and misrepresenting test-only runs in the GitHub Action summary (#2512)
- 📚 Docs fix (#2510)
v3.1.0
23 July 2025
- 🌟 CPython 3.14 wheels are now built by default - without the
"cpython-prerelease"enableset. It's time to build and upload these wheels to PyPI! This release includes CPython 3.14.0rc1, which is guaranteed to be ABI compatible with the final release. (#2507) Free-threading is no longer experimental in 3.14, so you have to skip it explicitly with'cp31?t-*'if you don't support it yet. (#2503)- 🌟 Adds the ability to build wheels for Android! Set the
platformoption toandroidon Linux or macOS to try it out! (#2349)- 🌟 Adds Pyodide 0.28, which builds 3.13 wheels (#2487)
- ✨ Support for 32-bit
manylinux_2_28(now a consistent default) andmanylinux_2_34added (#2500)- 🛠 Improved summary, will also use markdown summary output on GHA (#2469)
- 🛠 The riscv64 images now have a working default (as they are now part of pypy/manylinux), but are still experimental (and behind an
enable) since you can't push them to PyPI yet (#2506)- 🛠 Fixed a typo in the 3.9 MUSL riscv64 identifier (
cp39-musllinux_ricv64->cp39-musllinux_riscv64) (#2490)- 🛠 Mistyping
--onlynow shows the correct possibilities, and even suggests near matches on Python 3.14+ (#2499)
... (truncated)
Commits
352e013Bump version: v3.1.3c463e56tests: another iOS flaky spot (#2539)8c5c738docs(project): add Falcon to working examples (#2538)feeb399tests: add flaky test handling (#2527)60b9cc9fix: never call pip directly (#2537)e2c7102chore: remove some GraalPy Windows workarounds. (#2501)9e4e50bBump version: v3.1.28ef9414[pre-commit.ci] pre-commit autoupdate (#2532)1953c04Adding@mhsmithas platform maintainer for Android (#2516)46a6d27Bump iOS support package versions. (#2530)- Additional commits viewable in compare view
Updates scientific-python/circleci-artifacts-redirector-action from 1.1.0 to 1.2.0
Release notes
Sourced from scientific-python/circleci-artifacts-redirector-action's releases.
v1.2.0
What's Changed
- Build(deps): Bump autofix-ci/action from 1.3.1 to 1.3.2 in /.github/workflows in the actions group by
@dependabot[bot] in scientific-python/circleci-artifacts-redirector-action#75- Update LICENSE by
@larsonerin scientific-python/circleci-artifacts-redirector-action#77- Add option to set CircleCI domain by
@stefanvin scientific-python/circleci-artifacts-redirector-action#78- Build(deps-dev): Bump form-data from 3.0.1 to 3.0.4 by
@dependabot[bot] in scientific-python/circleci-artifacts-redirector-action#79New Contributors
@stefanvmade their first contribution in scientific-python/circleci-artifacts-redirector-action#78Full Changelog: https://github.com/scientific-python/circleci-artifacts-redirector-action/compare/v1.1.0...v1.2.0
Commits
Updates github/codeql-action from 3.29.3 to 3.29.8
Release notes
Sourced from github/codeql-action's releases.
v3.29.8
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
3.29.8 - 08 Aug 2025
- Fix an issue where the Action would autodetect unsupported languages such as HTML. #3015
See the full CHANGELOG.md for more information.
v3.29.7
This is a re-release of v3.29.5 to mitigate an issue that was discovered with v3.29.6.
v3.29.6
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
3.29.6 - 07 Aug 2025
- The
cleanup-levelinput to theanalyzeAction is now deprecated. The CodeQL Action has written a limited amount of intermediate results to the database since version 2.2.5, and now automatically manages cleanup. #2999- Update default CodeQL bundle version to 2.22.3. #3000
See the full CHANGELOG.md for more information.
v3.29.5
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
3.29.5 - 29 Jul 2025
- Update default CodeQL bundle version to 2.22.2. #2986
See the full CHANGELOG.md for more information.
v3.29.4
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
3.29.4 - 23 Jul 2025
No user facing changes.
See the full CHANGELOG.md for more information.
Changelog
Sourced from github/codeql-action's changelog.
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
[UNRELEASED]
No user facing changes.
3.29.8 - 08 Aug 2025
- Fix an issue where the Action would autodetect unsupported languages such as HTML. #3015
3.29.7 - 07 Aug 2025
This release rolls back 3.29.6 to address issues with language autodetection. It is identical to 3.29.5.
3.29.6 - 07 Aug 2025
- The
cleanup-levelinput to theanalyzeAction is now deprecated. The CodeQL Action has written a limited amount of intermediate results to the database since version 2.2.5, and now automatically manages cleanup. #2999- Update default CodeQL bundle version to 2.22.3. #3000
3.29.5 - 29 Jul 2025
- Update default CodeQL bundle version to 2.22.2. #2986
3.29.4 - 23 Jul 2025
No user facing changes.
3.29.3 - 21 Jul 2025
No user facing changes.
3.29.2 - 30 Jun 2025
- Experimental: When the
quality-queriesinput for theinitaction is provided with an argument, separate.quality.sariffiles are produced and uploaded for each language with the results of the specified queries. Do not use this in production as it is part of an internal experiment and subject to change at any time. #29353.29.1 - 27 Jun 2025
- Fix bug in PR analysis where user-provided
includequery filter fails to exclude non-included queries. #2938- Update default CodeQL bundle version to 2.22.1. #2950
3.29.0 - 11 Jun 2025
- Update default CodeQL bundle version to 2.22.0. #2925
- Bump minimum CodeQL bundle version to 2.16.6. #2912
3.28.21 - 28 July 2025
No user facing changes.
... (truncated)
Commits
76621b6Merge pull request #3019 from github/update-v3.29.8-679a40d3329ac3ceAdd release notes for 3.29.7737cfdeUpdate changelog for v3.29.8679a40dMerge pull request #3014 from github/henrymercer/rebuild-dispatch6fe50b2Merge pull request #3015 from github/henrymercer/language-autodetection-worka...6bc91d6Add changelog note6b4fedcBump Action patch version5794ffcFix auto-detection of extractors that aren't languagesbd62bf4Finish in-progress merges2afb4e6Avoid specifying branch unnecessarily- Additional commits viewable in compare view
Updates actions/cache from 4.2.3 to 4.2.4
Release notes
Sourced from actions/cache's releases.
v4.2.4
What's Changed
- Update README.md by
@nebuk89in actions/cache#1620- Upgrade
@actions/cacheto4.0.5and move@protobuf-ts/pluginto dev depdencies by@Link- in actions/cache#1634- Prepare release
4.2.4by@Link- in actions/cache#1636New Contributors
@nebuk89made their first contribution in actions/cache#1620Full Changelog: https://github.com/actions/cache/compare/v4...v4.2.4
Changelog
Sourced from actions/cache's changelog.
Releases
4.2.4
- Bump
@actions/cacheto v4.0.54.2.3
- Bump
@actions/cacheto v4.0.3 (obfuscates SAS token in debug logs for cache entries)4.2.2
- Bump
@actions/cacheto v4.0.24.2.1
- Bump
@actions/cacheto v4.0.14.2.0
TLDR; The cache backend service has been rewritten from the ground up for improved performance and reliability. actions/cache now integrates with the new cache service (v2) APIs.
The new service will gradually roll out as of February 1st, 2025. The legacy service will also be sunset on the same date. Changes in these release are fully backward compatible.
We are deprecating some versions of this action. We recommend upgrading to version
v4orv3as soon as possible before February 1st, 2025. (Upgrade instructions below).If you are using pinned SHAs, please use the SHAs of versions
v4.2.0orv3.4.0If you do not upgrade, all workflow runs using any of the deprecated actions/cache will fail.
Upgrading to the recommended versions will not break your workflows.
4.1.2
- Add GitHub Enterprise Cloud instances hostname filters to inform API endpoint choices - #1474
- Security fix: Bump braces from 3.0.2 to 3.0.3 - #1475
4.1.1
- Restore original behavior of
cache-hitoutput - #14674.1.0
4.0.2
- Fixed restore
fail-on-cache-missnot working.
... (truncated)
Commits
0400d5fMerge pull request #1636 from actions/Link-/release-4.2.4374a27fPrepare release 4.2.4358a730Merge pull request #1634 from actions/Link-/optimise-deps2ee706eFix with another approach94f7b5dFix bundle execc36116cFix the workflow to use licensed from source320fe7dUpdate the licensed workflow to use the latest versiond81cc47Add licensed outputde24398Add licensed outpute7b6a9c@protobuf-ts/pluginto dev dependencies- Additional commits viewable in compare view
Updates actions/first-interaction from 2.0.0 to 3.0.0
Release notes
Sourced from actions/first-interaction's releases.
v3.0.0
What's Changed
- Bump
@github/local-actionfrom 2.6.4 to 5.1.0 by@dependabot[bot] in actions/first-interaction#324- Bump eslint-import-resolver-typescript from 3.8.2 to 4.4.4 by
@dependabot[bot] in actions/first-interaction#325- Bump the npm-development group with 5 updates by
@dependabot[bot] in actions/first-interaction#326- Bump the npm-development group with 7 updates by
@dependabot[bot] in actions/first-interaction#333- Bump super-linter/super-linter from 7 to 8 by
@dependabot[bot] in actions/first-interaction#328- Bump eslint-plugin-jest from 28.11.0 to 29.0.1 by
@dependabot[bot] in actions/first-interaction#331- Bump
@rollup/rollup-linux-x64-gnufrom 4.45.1 to 4.46.2 by@dependabot[bot] in actions/first-interaction#330- Bump
@jest/globalsfrom 29.7.0 to 30.0.5 by@dependabot[bot] in actions/first-interaction#332- Bump
@octokit/restfrom 21.1.1 to 22.0.0 by@dependabot[bot] in actions/first-interaction#329- Add actionlint configuration by
@ncalteenin actions/first-interaction#334- Node 24 support by
@salmanmkcin actions/first-interaction#327- Prepare release v3.0.0 by
@salmanmkcin actions/first-interaction#335New Contributors
@salmanmkcmade their first contribution in actions/first-interaction#327Full Changelog: https://github.com/actions/first-interaction/compare/v2...v3.0.0
Commits
753c925Merge pull request #335 from salmanmkc/3.0.0-releasef227809undoe5b5b2dundo56cdf16typo6d0c4b5Lint3372cfaPrepare release v3.0.082989bfMerge pull request #327 from salmanmkc/salmanmkc/24-nodea41b9d6foramt6722ff5Merge branch 'main' into salmanmkc/24-nodee518f77Merge pull request #334 from actions/ncalteen/actionlint- 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
1
9
+29
-29
Package Dependencies
actions/download-artifact
actions
4.3.0 → 5.0.0
Major
actions/first-interaction
actions
2.0.0 → 3.0.0
Major
actions
1.1.0 → 1.2.0
Minor
Technical Details
| ID: | 4971135 |
| UUID: | 2737621637 |
| Node ID: | PR_kwDOABUios6jLMqF |
| Host: | GitHub |
| Repository: | matplotlib/matplotlib |
| Merge State: | Unknown |