Skip to content

Commit

Permalink
⬆️ Bump the github-actions group across 1 directory with 3 updates (#214
Browse files Browse the repository at this point in the history
)

Bumps the github-actions group with 3 updates in the / directory:
[pypa/cibuildwheel](https://github.com/pypa/cibuildwheel),
[pre-commit/action](https://github.com/pre-commit/action) and
[release-drafter/release-drafter](https://github.com/release-drafter/release-drafter).

Updates `pypa/cibuildwheel` from 2.16 to 2.17
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pypa/cibuildwheel/releases">pypa/cibuildwheel's
releases</a>.</em></p>
<blockquote>
<h2>v2.17.0</h2>
<ul>
<li>🌟 Adds the ability to inherit configuration in TOML overrides. This
makes certain configurations much simpler. If you're overriding an
option like <code>before-build</code> or <code>environment</code>, and
you just want to add an extra command or environment variable, you can
just append (or prepend) to the previous config. See <a
href="https://cibuildwheel.pypa.io/en/stable/options/#inherit">the
docs</a> for more information. (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1730">#1730</a>)</li>
<li>🌟 Adds official support for native arm64 macOS GitHub runners. To
use them, just specify <code>macos-14</code> as an <code>os</code> of
your job in your workflow file. You can also keep <code>macos-13</code>
in your build matrix to build x86_64. Check out the new <a
href="https://cibuildwheel.pypa.io/en/stable/setup/#github-actions">GitHub
Actions example config</a>.</li>
<li>✨ You no longer need to specify <code>--platform</code> to run
cibuildwheel locally! Instead it will detect your platform
automatically. This was a safety feature, no longer necessary. (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1727">#1727</a>)</li>
<li>🛠 Removed setuptools and wheel pinned versions. This only affects
old-style projects without a <code>pyproject.toml</code>, projects with
<code>pyproject.toml</code> are already getting fresh versions of their
<code>build-system.requires</code> installed into an isolated
environment. (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1725">#1725</a>)</li>
<li>🛠 Improve how the GitHub Action passes arguments (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1757">#1757</a>)</li>
<li>🛠 Remove a system-wide install of pipx in the GitHub Action (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1745">#1745</a>)</li>
<li>🐛 No longer will cibuildwheel override the PIP_CONSTRAINT
environment variable when using the <code>build</code> frontend. Instead
it will be extended. (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1675">#1675</a>)</li>
<li>🐛 Fix a bug where building and testing both x86_86 and arm64 wheels
on the same runner caused the wrong architectures in the test
environment (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1750">#1750</a>)</li>
<li>🐛 Fix a bug that prevented testing a CPython 3.8 wheel targeting
macOS 11+ on x86_64 (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1768">#1768</a>)</li>
<li>📚 Moved the docs onto the official PyPA domain - they're now
available at <a
href="https://cibuildwheel.pypa.io">https://cibuildwheel.pypa.io</a> .
(<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1775">#1775</a>)</li>
<li>📚 Docs and examples improvements (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1762">#1762</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1734">#1734</a>)</li>
</ul>
<h2>v2.16.5</h2>
<ul>
<li>🐛 Fix an incompatibility with the GitHub Action and new GitHub
Runner images for Windows that bundle Powershell 7.3+ (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1741">#1741</a>)</li>
<li>🛠 Preliminary support for new <code>macos-14</code> arm64 runners
(<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1743">#1743</a>)</li>
</ul>
<h2>v2.16.4</h2>
<p>🛠 Update manylinux pins to upgrade from a problematic PyPy version.
(<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1737">#1737</a>)</p>
<h2>v2.16.3</h2>
<ul>
<li>🐛 Fix a bug when building from sdist, where relative paths to files
in the package didn't work because the working directory was wrong (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1687">#1687</a>)</li>
<li>🛠 Adds the ability to disable mounting the host filesystem in
containers to <code>/host</code>, through the
<code>disable_host_mount</code> suboption on <a
href="https://cibuildwheel.readthedocs.io/en/stable/options/#container-engine"><code>CIBW_CONTAINER_ENGINE</code></a>.</li>
<li>📚 A lot of docs improvements! (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1708">#1708</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1705">#1705</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1686">#1686</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1679">#1679</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1667">#1667</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1665">#1665</a>)</li>
</ul>
<h2>v2.16.2</h2>
<ul>
<li>🛠 Updates CPython 3.12 version to 3.12.0, final release (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1635">#1635</a>)</li>
<li>✨ Adds a debug option <a
href="https://cibuildwheel.readthedocs.io/en/stable/options/#cibw_debug_keep_container"><code>CIBW_DEBUG_KEEP_CONTAINER</code></a>
to stop cibuildwheel deleting build containers after the build finishes.
(<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1620">#1620</a>)</li>
<li>📚 Adds support for <code>[tool.cibuildwheel]</code> checking by
adding a schema compatible with the <a
href="https://github.com/abravalheri/validate-pyproject/">validate-pyproject</a>
tool (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1622">#1622</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1628">#1628</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1629">#1629</a>)</li>
<li>🐛 Fix parsing of <code>CIBW_CONTAINER_ENGINE</code> and
<code>CIBW_BUILD_FRONTEND</code> options to not break arguments on
<code>:</code> characters (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1621">#1621</a>)</li>
<li>🐛 Fix the evaluation order of <code>CIBW_ENVIRONMENT</code> and
<code>CIBW_ENVIRONMENT_PASS</code> so that <code>CIBW_ENVIRONMENT</code>
assignments can reference environment variables passed through from the
host machine. (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1617">#1617</a>)</li>
<li>🛠 Supports manylinux images' deferred installation of interpreters
through the <code>manylinux-interpreters</code> tool (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1630">#1630</a>)</li>
</ul>
<h2>v2.16.1</h2>
<ul>
<li>🛠 Updates the prerelease CPython 3.12 version to 3.12.0rc3 (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1625">#1625</a>)</li>
<li>🛠 Only calls <code>linux32</code> in containers when necessary (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1599">#1599</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md">pypa/cibuildwheel's
changelog</a>.</em></p>
<blockquote>
<hr />
<h2>title: Changelog</h2>
<h1>Changelog</h1>
<h3>v2.17.0</h3>
<p><em>11 March 2024</em></p>
<ul>
<li>🌟 Adds the ability to inherit configuration in TOML overrides. This
makes certain configurations much simpler. If you're overriding an
option like <code>before-build</code> or <code>environment</code>, and
you just want to add an extra command or environment variable, you can
just append (or prepend) to the previous config. See <a
href="https://cibuildwheel.pypa.io/en/stable/options/#inherit">the
docs</a> for more information. (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1730">#1730</a>)</li>
<li>🌟 Adds official support for native arm64 macOS GitHub runners. To
use them, just specify <code>macos-14</code> as an <code>os</code> of
your job in your workflow file. You can also keep <code>macos-13</code>
in your build matrix to build x86_64. Check out the new <a
href="https://cibuildwheel.pypa.io/en/stable/setup/#github-actions">GitHub
Actions example config</a>.</li>
<li>✨ You no longer need to specify <code>--platform</code> to run
cibuildwheel locally! Instead it will detect your platform
automatically. This was a safety feature, no longer necessary. (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1727">#1727</a>)</li>
<li>🛠 Removed setuptools and wheel pinned versions. This only affects
old-style projects without a <code>pyproject.toml</code>, projects with
<code>pyproject.toml</code> are already getting fresh versions of their
<code>build-system.requires</code> installed into an isolated
environment. (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1725">#1725</a>)</li>
<li>🛠 Improve how the GitHub Action passes arguments (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1757">#1757</a>)</li>
<li>🛠 Remove a system-wide install of pipx in the GitHub Action (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1745">#1745</a>)</li>
<li>🐛 No longer will cibuildwheel override the PIP_CONSTRAINT
environment variable when using the <code>build</code> frontend. Instead
it will be extended. (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1675">#1675</a>)</li>
<li>🐛 Fix a bug where building and testing both x86_86 and arm64 wheels
on the same runner caused the wrong architectures in the test
environment (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1750">#1750</a>)</li>
<li>🐛 Fix a bug that prevented testing a CPython 3.8 wheel targeting
macOS 11+ on x86_64 (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1768">#1768</a>)</li>
<li>📚 Moved the docs onto the official PyPA domain - they're now
available at <a
href="https://cibuildwheel.pypa.io">https://cibuildwheel.pypa.io</a> .
(<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1775">#1775</a>)</li>
<li>📚 Docs and examples improvements (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1762">#1762</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1734">#1734</a>)</li>
</ul>
<h3>v2.16.5</h3>
<p><em>30 January 2024</em></p>
<ul>
<li>🐛 Fix an incompatibility with the GitHub Action and new GitHub
Runner images for Windows that bundle Powershell 7.3+ (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1741">#1741</a>)</li>
<li>🛠 Preliminary support for new <code>macos-14</code> arm64 runners
(<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1743">#1743</a>)</li>
</ul>
<h3>v2.16.4</h3>
<p><em>28 January 2024</em></p>
<ul>
<li>🛠 Update manylinux pins to upgrade from a problematic PyPy version.
(<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1737">#1737</a>)</li>
</ul>
<h3>v2.16.3</h3>
<p><em>26 January 2024</em></p>
<ul>
<li>🐛 Fix a bug when building from sdist, where relative paths to files
in the package didn't work because the working directory was wrong (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1687">#1687</a>)</li>
<li>🛠 Adds the ability to disable mounting the host filesystem in
containers to <code>/host</code>, through the
<code>disable_host_mount</code> suboption on <a
href="https://cibuildwheel.pypa.io/en/stable/options/#container-engine"><code>CIBW_CONTAINER_ENGINE</code></a>.</li>
<li>📚 A lot of docs improvements! (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1708">#1708</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1705">#1705</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1686">#1686</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1679">#1679</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1667">#1667</a>,
<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1665">#1665</a>)</li>
</ul>
<h3>v2.16.2</h3>
<p><em>3 October 2023</em></p>
<ul>
<li>🛠 Updates CPython 3.12 version to 3.12.0, final release (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1635">#1635</a>)</li>
<li>✨ Adds a debug option <a
href="https://cibuildwheel.pypa.io/en/stable/options/#cibw_debug_keep_container"><code>CIBW_DEBUG_KEEP_CONTAINER</code></a>
to stop cibuildwheel deleting build containers after the build finishes.
(<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1620">#1620</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pypa/cibuildwheel/commit/8d945475ac4b1aac4ae08b2fd27db9917158b6ce"><code>8d94547</code></a>
Bump version: v2.17.0</li>
<li><a
href="https://github.com/pypa/cibuildwheel/commit/ca06deb26f92b2b2c6019a3bc223875215fe4cf2"><code>ca06deb</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1775">#1775</a>
from pypa/doc-domain</li>
<li><a
href="https://github.com/pypa/cibuildwheel/commit/f7e19222253830775777d4dc7e8cf56aa098d97f"><code>f7e1922</code></a>
CirrusCI fixes (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1786">#1786</a>)</li>
<li><a
href="https://github.com/pypa/cibuildwheel/commit/0d8e919dfc5b7631e641377671db317556dcc7ef"><code>0d8e919</code></a>
[Bot] Update dependencies (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1784">#1784</a>)</li>
<li><a
href="https://github.com/pypa/cibuildwheel/commit/022de07dc13bb25455653a082449a0c038632ac0"><code>022de07</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1785">#1785</a>
from pypa/revert-1783</li>
<li><a
href="https://github.com/pypa/cibuildwheel/commit/920f574191fe30782d55398b7a0e70d62c999024"><code>920f574</code></a>
Remove manylinux1 docker pin</li>
<li><a
href="https://github.com/pypa/cibuildwheel/commit/5c06f3c28934b3830d065b17ab853c4465ce6623"><code>5c06f3c</code></a>
docs: Add how to run tests in development (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1698">#1698</a>)</li>
<li><a
href="https://github.com/pypa/cibuildwheel/commit/e2a0839555d4d2ffd366ac4cd933262f5974fd10"><code>e2a0839</code></a>
fix: set SYSTEM_VERSION_COMPAT=0 during pip install on macos (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1768">#1768</a>)</li>
<li><a
href="https://github.com/pypa/cibuildwheel/commit/87fff7728267ddada9c54df079e5864e5c5e5dfb"><code>87fff77</code></a>
chore(deps): bump the actions group with 1 update (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1776">#1776</a>)</li>
<li><a
href="https://github.com/pypa/cibuildwheel/commit/8ef9486aab2cc0aea71870a765265e294d84a679"><code>8ef9486</code></a>
Add <code>pedalboard</code> to projects.yml. (<a
href="https://redirect.github.com/pypa/cibuildwheel/issues/1781">#1781</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pypa/cibuildwheel/compare/v2.16...v2.17">compare
view</a></li>
</ul>
</details>
<br />

Updates `pre-commit/action` from 3.0.0 to 3.0.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pre-commit/action/releases">pre-commit/action's
releases</a>.</em></p>
<blockquote>
<h2>pre-commit/action@v3.0.1</h2>
<h3>Misc</h3>
<ul>
<li>Update actions/cache to v4
<ul>
<li><a
href="https://redirect.github.com/pre-commit/action/issues/190">#190</a>
PR by <a
href="https://github.com/SukiCZ"><code>@​SukiCZ</code></a>.</li>
<li><a
href="https://redirect.github.com/pre-commit/action/issues/189">#189</a>
issue by <a
href="https://github.com/bakerkj"><code>@​bakerkj</code></a>.</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pre-commit/action/commit/2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd"><code>2c7b380</code></a>
v3.0.1</li>
<li><a
href="https://github.com/pre-commit/action/commit/8e2deebc7918860122d0968e9e4fb73161fedbe2"><code>8e2deeb</code></a>
Merge pull request <a
href="https://redirect.github.com/pre-commit/action/issues/190">#190</a>
from SukiCZ/upgrade-action/cache-v4</li>
<li><a
href="https://github.com/pre-commit/action/commit/0dbc303468d9ee1ae3a4cddd9b697c1424c73522"><code>0dbc303</code></a>
Upgrade action/cache to v4. Fixes: <a
href="https://redirect.github.com/pre-commit/action/issues/189">#189</a></li>
<li><a
href="https://github.com/pre-commit/action/commit/c7d159c2092cbfaab7352e2d8211ab536aa2267c"><code>c7d159c</code></a>
Merge pull request <a
href="https://redirect.github.com/pre-commit/action/issues/185">#185</a>
from pre-commit/asottile-patch-1</li>
<li><a
href="https://github.com/pre-commit/action/commit/9dd42377a1725fb44b57b6a17501d984852f8ad9"><code>9dd4237</code></a>
fix main badge</li>
<li><a
href="https://github.com/pre-commit/action/commit/37faf8a587e18fa3a3f78f600c9edbfd0691c3c3"><code>37faf8a</code></a>
Merge pull request <a
href="https://redirect.github.com/pre-commit/action/issues/184">#184</a>
from pre-commit/pre-commit-ci-update-config</li>
<li><a
href="https://github.com/pre-commit/action/commit/049686ec527b5f1785b9cafcb3258821878466b1"><code>049686e</code></a>
[pre-commit.ci] pre-commit autoupdate</li>
<li><a
href="https://github.com/pre-commit/action/commit/5f528da5c95691c4cf42ff76a4d10854b62cbb82"><code>5f528da</code></a>
move back to maintenance-only</li>
<li><a
href="https://github.com/pre-commit/action/commit/efd3bcfec120bd343786e46318186153b7bc8c68"><code>efd3bcf</code></a>
Merge pull request <a
href="https://redirect.github.com/pre-commit/action/issues/170">#170</a>
from pre-commit/pre-commit-ci-update-config</li>
<li><a
href="https://github.com/pre-commit/action/commit/df308c7f46bfa147cdec6c9795d030dc13431d35"><code>df308c7</code></a>
[pre-commit.ci] pre-commit autoupdate</li>
<li>Additional commits viewable in <a
href="https://github.com/pre-commit/action/compare/v3.0.0...v3.0.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `release-drafter/release-drafter` from 5 to 6
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/release-drafter/release-drafter/releases">release-drafter/release-drafter's
releases</a>.</em></p>
<blockquote>
<h2>v6.0.0</h2>
<h1>What's Changed</h1>
<ul>
<li>Update Node.js to 20 (<a
href="https://redirect.github.com/release-drafter/release-drafter/issues/1379">#1379</a>)
<a href="https://github.com/massongit"><code>@​massongit</code></a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/release-drafter/release-drafter/compare/v5.25.0...v6.0.0">https://github.com/release-drafter/release-drafter/compare/v5.25.0...v6.0.0</a></p>
<h2>v6.0.0-beta.1</h2>
<p>Prerelease of v6, first release of the CLI, feel free to provide
feedback in the pull request: <a
href="https://redirect.github.com/release-drafter/release-drafter/pull/1204">release-drafter/release-drafter#1204</a></p>
<h2>v5.25.0</h2>
<h1>What's Changed</h1>
<h2>New</h2>
<ul>
<li>add prerelease increment behavior (<a
href="https://redirect.github.com/release-drafter/release-drafter/issues/1303">#1303</a>)
<a href="https://github.com/neilime"><code>@​neilime</code></a></li>
<li>add latest input (<a
href="https://redirect.github.com/release-drafter/release-drafter/issues/1348">#1348</a>)
<a href="https://github.com/o-mago"><code>@​o-mago</code></a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/release-drafter/release-drafter/compare/v5.24.0...v5.25.0">https://github.com/release-drafter/release-drafter/compare/v5.24.0...v5.25.0</a></p>
<h2>v5.24.0</h2>
<h1>What's Changed</h1>
<h2>New</h2>
<ul>
<li>Add release version to github action output (<a
href="https://redirect.github.com/release-drafter/release-drafter/issues/1300">#1300</a>)
<a
href="https://github.com/mehdihadeli"><code>@​mehdihadeli</code></a></li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>fix(release): strip prefix before comparing version (<a
href="https://redirect.github.com/release-drafter/release-drafter/issues/1255">#1255</a>)
<a href="https://github.com/neilime"><code>@​neilime</code></a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/release-drafter/release-drafter/compare/v5.23.0...v5.24.0">https://github.com/release-drafter/release-drafter/compare/v5.23.0...v5.24.0</a></p>
<h2>v5.23.0</h2>
<h1>What's Changed</h1>
<h2>New</h2>
<ul>
<li>Add <code>include-pre-releases</code> configuration option (<a
href="https://redirect.github.com/release-drafter/release-drafter/issues/1302">#1302</a>)
<a
href="https://github.com/robbinjanssen"><code>@​robbinjanssen</code></a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/release-drafter/release-drafter/compare/v5.22.0...v5.23.0">https://github.com/release-drafter/release-drafter/compare/v5.22.0...v5.23.0</a></p>
<h2>v5.22.0</h2>
<h1>What's Changed</h1>
<h2>New</h2>
<ul>
<li>Only use last full release when drafting (<a
href="https://redirect.github.com/release-drafter/release-drafter/issues/1240">#1240</a>)
<a href="https://github.com/ssbarnea"><code>@​ssbarnea</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/release-drafter/release-drafter/commit/3f0f87098bd6b5c5b9a36d49c41d998ea58f9348"><code>3f0f870</code></a>
v6.0.0</li>
<li><a
href="https://github.com/release-drafter/release-drafter/commit/80296b4fbaeb08e43a2b957e188b283a20776b3b"><code>80296b4</code></a>
Update Node.js to 20 (<a
href="https://redirect.github.com/release-drafter/release-drafter/issues/1379">#1379</a>)</li>
<li>See full diff in <a
href="https://github.com/release-drafter/release-drafter/compare/v5...v6">compare
view</a></li>
</ul>
</details>
<br />


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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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


</details>
  • Loading branch information
lucasberent authored Apr 19, 2024
2 parents cc64b09 + c9a8d41 commit 2d38eec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
git clone --branch v2.9.0 --depth 1 https://github.com/flintlib/flint2.git
cd flint2 && ./configure && make -j 3 && make install
- name: Build wheels
uses: pypa/cibuildwheel@v2.16
uses: pypa/cibuildwheel@v2.17
- name: Verify clean directory
run: git diff --exit-code
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: pre-commit/action@v3.0.0
- uses: pre-commit/action@v3.0.1
with:
extra_args: mypy --all-files
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit 2d38eec

Please sign in to comment.