Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Bump the actions group with 3 updates#30181

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabotdependabotbot commented on behalf ofgithubJun 16, 2025

Bumps the actions group with 3 updates:pypa/cibuildwheel,actions/attest-build-provenance andgithub/codeql-action.

Updatespypa/cibuildwheel from 2.23.3 to 3.0.0

Release notes

Sourced frompypa/cibuildwheel's releases.

v3.0.0

See@​henryiii'srelease post for more info on new features!

  • 🌟 Adds the ability tobuild wheels for iOS! Set theplatform option toios on a Mac with the iOS toolchain to try it out! (#2286,#2363,#2432)

  • 🌟 Adds support for the GraalPy interpreter! Enable for your project using theenable option. (#1538,#2411,#2414)

  • ✨ Adds CPython 3.14 support, under theenable optioncpython-prerelease. This version of cibuildwheel uses 3.14.0b2. (#2390)

    While CPython is in beta, the ABI can change, so your wheels might not be compatible with the final release. For this reason, we don't recommend distributing wheels until RC1, at which point 3.14 will be available in cibuildwheel without the flag. (#2390)

  • ✨ Adds thetest-sources option, and changes the working directory for tests. (#2062,#2284,#2437)

    • If this option is set, cibuildwheel will copy the files and folders specified intest-sources into the temporary directory we run from. This is required for iOS builds, but also useful for other platforms, as it allows you to avoid placeholders.
    • If this option is not set, behaviour matches v2.x - cibuildwheel will run the tests from a temporary directory, and you can use the{project} placeholder in thetest-command to refer to the project directory. (#2420)
  • ✨ Addsdependency-versions inline syntax (#2122)

  • ✨ Improves support for Pyodide builds and adds the experimentalpyodide-version option, which allows you to specify the version of Pyodide to use for builds. (#2002)

  • ✨ Addpyodide-prereleaseenable option, with an early build of 0.28 (Python 3.13). (#2431)

  • ✨ Adds thetest-environment option, which allows you to set environment variables for the test command. (#2388)

  • ✨ Adds thexbuild-tools option, which allows you to specify tools safe for cross-compilation. Currently only used on iOS; will be useful for Android in the future. (#2317)

  • 🛠 The defaultmanylinux image has changed frommanylinux2014 tomanylinux_2_28. (#2330)

  • 🛠 EOL imagesmanylinux1,manylinux2010,manylinux_2_24 andmusllinux_1_1 can no longer be specified by their shortname. The full OCI name can still be used for these images, if you wish. (#2316)

  • 🛠 Invokesbuild rather thanpip wheel to build wheels by default. You can control this via thebuild-frontend option. You might notice that you can see your build log output now! (#2321)

  • 🛠 Build verbosity settings have been reworked to have consistent meanings between build backends when non-zero. (#2339)

  • 🛠 Removed theCIBW_PRERELEASE_PYTHONS andCIBW_FREE_THREADED_SUPPORT options - these have been folded into theenable option instead. (#2095)

  • 🛠 Build environments no longer have setuptools and wheel preinstalled. (#2329)

  • 🛠 Use the standard Schema line for the integrated JSONSchema. (#2433)

  • ⚠️ Dropped support for building Python 3.6 and 3.7 wheels. If you need to build wheels for these versions, use cibuildwheel v2.23.3 or earlier. (#2282)

  • ⚠️ The minimum Python version required to run cibuildwheel is now Python 3.11. You can still build wheels for Python 3.8 and newer. (#1912)

  • ⚠️ 32-bit Linux wheels no longer built by default - thearch was removed from"auto". It now requires explicit"auto32". Note that modern manylinux images (like the new default,manylinux_2_28) do not have 32-bit versions. (#2458)

  • ⚠️ PyPy wheels no longer built by default, due to a change to our options system. To continue building PyPy wheels, you'll now need to set theenable option topypy orpypy-eol. (#2095)

  • ⚠️ Dropped official support for Appveyor. If it was working for you before, it will probably continue to do so, but we can't be sure, because our CI doesn't run there anymore. (#2386)

  • 📚 A reorganisation of the docs, and numerous updates. (#2280)

  • 📚 Use Python 3.14 color output in docs CLI output. (#2407)

  • 📚 Docs now primarily use the pyproject.toml name of options, rather than the environment variable name. (#2389)

  • 📚 README table now matches docs and auto-updates. (#2427,#2428)

v3.0.0rc3

Not yet released, but available for testing.

Note - when using a beta version, be sure to check thelatest docs, rather than the stable version, which is still on v2.X.

If you've used previous versions of the beta:

  • ⚠️ Previous betas of v3.0 changed the working directory for tests. This has been rolled back to the v2.x behaviour, so you might need to change configs if you adapted to the beta 1 or 2 behaviour. See [issue#2406](pypa/cibuildwheel#2406) for more information.
  • ⚠️ GraalPy shipped with the identifiergp242-* in previous betas, this has been changed togp311_242-* to be consistent with other interpreters, and to fix a bug with GraalPy and project requires-python detection. If you were using GraalPy, you might need to update your config to use the new identifier.
  • ⚠️test-sources now usesproject directory instead of thepackage directory (matching the docs).
  • ⚠️ 32-bit linux builds were removed from"auto" (the default), now require"auto32" or explicit archs, as modern manylinux images (including our new default) do not support them.

... (truncated)

Changelog

Sourced frompypa/cibuildwheel's changelog.


title: Changelog

Changelog

v3.0.0

11 June 2025

See@​henryiii'srelease post for more info on new features!

  • 🌟 Adds the ability tobuild wheels for iOS! Set theplatform option toios on a Mac with the iOS toolchain to try it out! (#2286,#2363,#2432)

  • 🌟 Adds support for the GraalPy interpreter! Enable for your project using theenable option. (#1538,#2411,#2414)

  • ✨ Adds CPython 3.14 support, under theenable optioncpython-prerelease. This version of cibuildwheel uses 3.14.0b2. (#2390)

    While CPython is in beta, the ABI can change, so your wheels might not be compatible with the final release. For this reason, we don't recommend distributing wheels until RC1, at which point 3.14 will be available in cibuildwheel without the flag. (#2390)

  • ✨ Adds thetest-sources option, and changes the working directory for tests. (#2062,#2284,#2437)

    • If this option is set, cibuildwheel will copy the files and folders specified intest-sources into the temporary directory we run from. This is required for iOS builds, but also useful for other platforms, as it allows you to avoid placeholders.
    • If this option is not set, behaviour matches v2.x - cibuildwheel will run the tests from a temporary directory, and you can use the{project} placeholder in thetest-command to refer to the project directory. (#2420)
  • ✨ Addsdependency-versions inline syntax (#2122)

  • ✨ Improves support for Pyodide builds and adds the experimentalpyodide-version option, which allows you to specify the version of Pyodide to use for builds. (#2002)

  • ✨ Addpyodide-prereleaseenable option, with an early build of 0.28 (Python 3.13). (#2431)

  • ✨ Adds thetest-environment option, which allows you to set environment variables for the test command. (#2388)

  • ✨ Adds thexbuild-tools option, which allows you to specify tools safe for cross-compilation. Currently only used on iOS; will be useful for Android in the future. (#2317)

  • 🛠 The defaultmanylinux image has changed frommanylinux2014 tomanylinux_2_28. (#2330)

  • 🛠 EOL imagesmanylinux1,manylinux2010,manylinux_2_24 andmusllinux_1_1 can no longer be specified by their shortname. The full OCI name can still be used for these images, if you wish. (#2316)

  • 🛠 Invokesbuild rather thanpip wheel to build wheels by default. You can control this via thebuild-frontend option. You might notice that you can see your build log output now! (#2321)

  • 🛠 Build verbosity settings have been reworked to have consistent meanings between build backends when non-zero. (#2339)

  • 🛠 Removed theCIBW_PRERELEASE_PYTHONS andCIBW_FREE_THREADED_SUPPORT options - these have been folded into theenable option instead. (#2095)

  • 🛠 Build environments no longer have setuptools and wheel preinstalled. (#2329)

  • 🛠 Use the standard Schema line for the integrated JSONSchema. (#2433)

  • ⚠️ Dropped support for building Python 3.6 and 3.7 wheels. If you need to build wheels for these versions, use cibuildwheel v2.23.3 or earlier. (#2282)

  • ⚠️ The minimum Python version required to run cibuildwheel is now Python 3.11. You can still build wheels for Python 3.8 and newer. (#1912)

  • ⚠️ 32-bit Linux wheels no longer built by default - thearch was removed from"auto". It now requires explicit"auto32". Note that modern manylinux images (like the new default,manylinux_2_28) do not have 32-bit versions. (#2458)

  • ⚠️ PyPy wheels no longer built by default, due to a change to our options system. To continue building PyPy wheels, you'll now need to set theenable option topypy orpypy-eol. (#2095)

  • ⚠️ Dropped official support for Appveyor. If it was working for you before, it will probably continue to do so, but we can't be sure, because our CI doesn't run there anymore. (#2386)

  • 📚 A reorganisation of the docs, and numerous updates. (#2280)

  • 📚 Use Python 3.14 color output in docs CLI output. (#2407)

  • 📚 Docs now primarily use the pyproject.toml name of options, rather than the environment variable name. (#2389)

  • 📚 README table now matches docs and auto-updates. (#2427,#2428)

v2.23.3

26 April 2025

  • 🛠 Dependency updates, including Python 3.13.3 (#2371)

... (truncated)

Commits

Updatesactions/attest-build-provenance from 2.3.0 to 2.4.0

Release notes

Sourced fromactions/attest-build-provenance's releases.

v2.4.0

What's Changed

Full Changelog:actions/attest-build-provenance@v2.3.0...v2.4.0

Commits
  • e8998f9 bump actions/attest from 2.3.0 to 2.4.0 (#654)
  • 11c67f2 Bump the npm-development group across 1 directory with 6 updates (#649)
  • 39cb715 Bump the npm-development group across 1 directory with 7 updates (#641)
  • 7d91c40 Bump undici from 5.28.5 to 5.29.0 (#633)
  • d848170 Bump super-linter/super-linter in the actions-minor group (#640)
  • 0ca36ea Bump the npm-development group with 7 updates (#582)
  • d82e7cd offboard from eslint in superlinter (#618)
  • See full diff incompare view

Updatesgithub/codeql-action from 3.28.19 to 3.29.0

Release notes

Sourced fromgithub/codeql-action's releases.

v3.29.0

CodeQL Action Changelog

See thereleases page for the relevant changes to the CodeQL CLI and language packs.

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

See the fullCHANGELOG.md for more information.

Changelog

Sourced fromgithub/codeql-action's changelog.

CodeQL Action Changelog

See thereleases page for the relevant changes to the CodeQL CLI and language packs.

[UNRELEASED]

No user facing changes.

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.19 - 03 Jun 2025

  • The CodeQL Action no longer includes its own copy of the extractor for theactions language, which is currently in public preview.Theactions extractor has been included in the CodeQL CLI since v2.20.6. If your workflow has enabled theactions languageand you have pinnedyourtools: property to a specific version of the CodeQL CLI earlier than v2.20.6, you will need to update to at least CodeQL v2.20.6 or disableactions analysis.
  • Update default CodeQL bundle version to 2.21.4.#2910

3.28.18 - 16 May 2025

  • Update default CodeQL bundle version to 2.21.3.#2893
  • Skip validating SARIF produced by CodeQL for improved performance.#2894
  • The number of threads and amount of RAM used by CodeQL can now be set via theCODEQL_THREADS andCODEQL_RAM runner environment variables. If set, these environment variables override thethreads andram inputs respectively.#2891

3.28.17 - 02 May 2025

  • Update default CodeQL bundle version to 2.21.2.#2872

3.28.16 - 23 Apr 2025

  • Update default CodeQL bundle version to 2.21.1.#2863

3.28.15 - 07 Apr 2025

  • Fix bug where the action would fail if it tried to produce a debug artifact with more than 65535 files.#2842

3.28.14 - 07 Apr 2025

  • Update default CodeQL bundle version to 2.21.0.#2838

3.28.13 - 24 Mar 2025

No user facing changes.

3.28.12 - 19 Mar 2025

  • Dependency caching should now cache more dependencies for Javabuild-mode: none extractions. This should speed up workflows and avoid inconsistent alerts in some cases.

... (truncated)

Commits
  • ce28f5b Merge pull request#2926 from github/update-v3.29.0-e8799281c
  • bc251b7 Update changelog for v3.29.0
  • e879928 Merge pull request#2925 from github/update-bundle/codeql-bundle-v2.22.0
  • efd43b3 Merge branch 'main' into update-bundle/codeql-bundle-v2.22.0
  • 7cb9b16 Merge pull request#2912 from github/henrymercer/bump-minimum-codeql-2.16.6
  • 3855117 Add changelog note
  • f5d4e2a Update default bundle to codeql-bundle-v2.22.0
  • 22deae8 Update package-lock.json
  • df2a830 Merge branch 'main' into henrymercer/bump-minimum-codeql-2.16.6
  • b1e4dc3 Merge pull request#2916 from github/dependabot/npm_and_yarn/npm-5cdccdc43f
  • Additional commits viewable incompare 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 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 actions group with 3 updates: [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel), [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) and [github/codeql-action](https://github.com/github/codeql-action).Updates `pypa/cibuildwheel` from 2.23.3 to 3.0.0- [Release notes](https://github.com/pypa/cibuildwheel/releases)- [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md)- [Commits](pypa/cibuildwheel@faf86a6...5f22145)Updates `actions/attest-build-provenance` from 2.3.0 to 2.4.0- [Release notes](https://github.com/actions/attest-build-provenance/releases)- [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md)- [Commits](actions/attest-build-provenance@db473fd...e8998f9)Updates `github/codeql-action` from 3.28.19 to 3.29.0- [Release notes](https://github.com/github/codeql-action/releases)- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)- [Commits](github/codeql-action@fca7ace...ce28f5b)---updated-dependencies:- dependency-name: pypa/cibuildwheel  dependency-version: 3.0.0  dependency-type: direct:production  update-type: version-update:semver-major  dependency-group: actions- dependency-name: actions/attest-build-provenance  dependency-version: 2.4.0  dependency-type: direct:production  update-type: version-update:semver-minor  dependency-group: actions- dependency-name: github/codeql-action  dependency-version: 3.29.0  dependency-type: direct:production  update-type: version-update:semver-minor  dependency-group: actions...Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotbot added dependenciesPull requests that update a dependency file github_actionsPull requests that update GitHub Actions code labelsJun 16, 2025
@github-actionsgithub-actionsbot added the CI: Run cibuildwheelRun wheel building tests on a PR labelJun 16, 2025
@oscargusoscargus added CI: Run cibuildwheelRun wheel building tests on a PR and removed CI: Run cibuildwheelRun wheel building tests on a PR labelsJun 17, 2025
@dstansbydstansby merged commit2c1ec43 intomainJun 17, 2025
68 of 70 checks passed
@dstansbydstansby deleted the dependabot/github_actions/actions-a7d2d3e850 branchJune 17, 2025 20:50
@QuLogicQuLogic added this to thev3.11.0 milestoneJun 17, 2025
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@dstansbydstansbydstansby approved these changes

Assignees
No one assigned
Labels
CI: Run cibuildwheelRun wheel building tests on a PRdependenciesPull requests that update a dependency filegithub_actionsPull requests that update GitHub Actions code
Projects
None yet
Milestone
v3.11.0
Development

Successfully merging this pull request may close these issues.

3 participants
@dstansby@QuLogic@oscargus

[8]ページ先頭

©2009-2025 Movatter.jp