Skip to content

Commit 2385349

Browse files
Bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `2.17.0` | `3.1.4` | | [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.2` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.8.14` | `1.12.4` | 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 `pypa/cibuildwheel` from 2.17.0 to 3.1.4 - [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.1.4) 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.2 - [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.2) Updates `pypa/gh-action-pypi-publish` from 1.8.14 to 1.12.4 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.8.14...v1.12.4) --- 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: pypa/cibuildwheel dependency-version: 3.1.4 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.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.12.4 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 2385349

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# python-version: '3.13'
1515
runs-on: ${{ matrix.os }}
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: actions/setup-python@v5
1919
with:
2020
python-version: ${{ matrix.python-version }}

.github/workflows/wheels.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ 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

@@ -44,7 +44,7 @@ jobs:
4444
outputs:
4545
include: ${{ steps.set-matrix.outputs.include }}
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
- uses: actions/setup-python@v5
4949
with:
5050
python-version: '3.x'
@@ -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.1.4 # sync version with pip install cibuildwheel above
8989
timeout-minutes: 10
9090
with:
9191
only: ${{ matrix.only }}
@@ -118,7 +118,7 @@ jobs:
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.2
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.12.4

0 commit comments

Comments
 (0)