Skip to content

Commit ca26326

Browse files
Bump the github-actions group across 1 directory with 6 updates
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `2.17.0` | `3.2.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `5` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `0.1.15` | `2.3.3` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.8.14` | `1.13.0` | 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 `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `pypa/cibuildwheel` from 2.17.0 to 3.2.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v2.17.0...v3.2.0) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `softprops/action-gh-release` from 0.1.15 to 2.3.3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@v0.1.15...v2.3.3) Updates `pypa/gh-action-pypi-publish` from 1.8.14 to 1.13.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.8.14...v1.13.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/cibuildwheel dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-version: 2.3.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 387fe32 commit ca26326

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
# python-version: '3.13'
1515
runs-on: ${{ matrix.os }}
1616
steps:
17-
- uses: actions/checkout@v4
18-
- uses: actions/setup-python@v5
17+
- uses: actions/checkout@v5
18+
- uses: actions/setup-python@v6
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
allow-prereleases: true

.github/workflows/wheels.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
PIP_DISABLE_PIP_VERSION_CHECK: 1
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: '3.x'
2828

@@ -44,8 +44,8 @@ jobs:
4444
outputs:
4545
include: ${{ steps.set-matrix.outputs.include }}
4646
steps:
47-
- uses: actions/checkout@v4
48-
- uses: actions/setup-python@v5
47+
- uses: actions/checkout@v5
48+
- uses: actions/setup-python@v6
4949
with:
5050
python-version: '3.x'
5151
- run: pip install cibuildwheel==2.17.0 # sync version with pypa/cibuildwheel below
@@ -77,15 +77,15 @@ jobs:
7777
include: ${{ fromJson(needs.build-wheels-matrix.outputs.include) }}
7878

7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@v5
8181
with:
8282
fetch-depth: 0
8383

8484
- name: Set up QEMU
8585
if: runner.os == 'Linux'
8686
uses: docker/setup-qemu-action@v3
8787

88-
- uses: pypa/cibuildwheel@v2.17.0 # sync version with pip install cibuildwheel above
88+
- uses: pypa/cibuildwheel@v3.2.0 # sync version with pip install cibuildwheel above
8989
timeout-minutes: 10
9090
with:
9191
only: ${{ matrix.only }}
@@ -114,11 +114,11 @@ jobs:
114114
id-token: write # pypa/gh-action-pypi-publish
115115

116116
steps:
117-
- uses: actions/setup-python@v5
117+
- uses: actions/setup-python@v6
118118
with:
119119
python-version: 3.x
120120

121-
- uses: actions/download-artifact@v4
121+
- uses: actions/download-artifact@v5
122122
with:
123123
path: dist/
124124
pattern: dist-*
@@ -132,9 +132,9 @@ jobs:
132132
run: python -c "import magic; magic.Magic()"
133133

134134
- name: Upload release assets
135-
uses: softprops/action-gh-release@v0.1.15
135+
uses: softprops/action-gh-release@v2.3.3
136136
with:
137137
files: dist/*
138138

139139
- name: Publish package distributions to PyPI
140-
uses: pypa/gh-action-pypi-publish@v1.8.14
140+
uses: pypa/gh-action-pypi-publish@v1.13.0

0 commit comments

Comments
 (0)