Skip to content

Commit 26df405

Browse files
dependabot[bot]maxbachmann
authored andcommitted
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/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `3.1.4` | `3.2.1` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.4` | `1.13.0` | Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `pypa/cibuildwheel` from 3.1.4 to 3.2.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.1.4...v3.2.1) Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.13.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.12.4...v1.13.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact 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.1 dependency-type: direct:production update-type: version-update:semver-minor 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] <[email protected]>
1 parent 5a30db2 commit 26df405

File tree

5 files changed

+32
-32
lines changed

5 files changed

+32
-32
lines changed

.github/workflows/branchbuild.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
submodules: 'true'
1818

19-
- uses: "actions/setup-python@v5"
19+
- uses: "actions/setup-python@v6"
2020
with:
2121
python-version: "3.13"
2222

@@ -52,7 +52,7 @@ jobs:
5252
steps:
5353
- uses: "actions/checkout@v5"
5454

55-
- uses: "actions/setup-python@v5"
55+
- uses: "actions/setup-python@v6"
5656
with:
5757
python-version: "3.13"
5858

@@ -96,7 +96,7 @@ jobs:
9696
steps:
9797
- uses: "actions/checkout@v5"
9898

99-
- uses: "actions/setup-python@v5"
99+
- uses: "actions/setup-python@v6"
100100
with:
101101
python-version: "3.13"
102102

@@ -149,7 +149,7 @@ jobs:
149149
- uses: "actions/checkout@v5"
150150
with:
151151
submodules: 'true'
152-
- uses: "actions/setup-python@v5"
152+
- uses: "actions/setup-python@v6"
153153
with:
154154
allow-prereleases: true
155155
python-version: "${{ matrix.python-version }}"
@@ -206,7 +206,7 @@ jobs:
206206
repository: rapidfuzz/intel-sde
207207
path: sde
208208

209-
- uses: "actions/setup-python@v5"
209+
- uses: "actions/setup-python@v6"
210210
with:
211211
python-version: "3.13"
212212

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: "actions/checkout@v5"
1414
with:
1515
submodules: 'true'
16-
- uses: "actions/setup-python@v5"
16+
- uses: "actions/setup-python@v6"
1717
with:
1818
python-version: "3.11"
1919

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v5
2626
with:
2727
submodules: 'true'
28-
- uses: actions/setup-python@v5
28+
- uses: actions/setup-python@v6
2929

3030
- name: Install dependencies
3131
run: |

.github/workflows/releasebuild.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v5
1616
with:
1717
submodules: 'true'
18-
- uses: actions/setup-python@v5
18+
- uses: actions/setup-python@v6
1919
with:
2020
python-version: "3.11"
2121

@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
tools/seg_wrapper.sh pytest tests
5050
51-
- uses: actions/upload-artifact@v4
51+
- uses: actions/upload-artifact@v5
5252
with:
5353
name: artifact-sdist
5454
path: dist/*.tar.gz
@@ -66,24 +66,24 @@ jobs:
6666
CIBW_BUILD_VERBOSITY: 3
6767

6868
steps:
69-
- uses: actions/download-artifact@v5
69+
- uses: actions/download-artifact@v6
7070
with:
7171
name: artifact-sdist
7272
path: dist
7373

7474
- name: Copy wheel
7575
run: copy dist/*.tar.gz rapidfuzz.tar.gz
7676

77-
- uses: actions/setup-python@v5
77+
- uses: actions/setup-python@v6
7878

7979
- name: Build wheels
80-
uses: pypa/cibuildwheel@v3.1.4
80+
uses: pypa/cibuildwheel@v3.2.1
8181
with:
8282
package-dir: rapidfuzz.tar.gz
8383
output-dir: wheelhouse
8484

8585
- name: Upload wheels
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v5
8787
with:
8888
name: artifact-${{ github.job }}-${{ strategy.job-index }}
8989
path: ./wheelhouse/*.whl
@@ -101,24 +101,24 @@ jobs:
101101
CIBW_BUILD_VERBOSITY: 3
102102

103103
steps:
104-
- uses: actions/download-artifact@v5
104+
- uses: actions/download-artifact@v6
105105
with:
106106
name: artifact-sdist
107107
path: dist
108108

109-
- uses: actions/setup-python@v5
109+
- uses: actions/setup-python@v6
110110

111111
- name: Copy wheel
112112
run: cp dist/*.tar.gz rapidfuzz.tar.gz
113113

114114
- name: Build wheels
115-
uses: pypa/cibuildwheel@v3.1.4
115+
uses: pypa/cibuildwheel@v3.2.1
116116
with:
117117
package-dir: rapidfuzz.tar.gz
118118
output-dir: wheelhouse
119119

120120
- name: Upload wheels
121-
uses: actions/upload-artifact@v4
121+
uses: actions/upload-artifact@v5
122122
with:
123123
name: artifact-${{ github.job }}-${{ strategy.job-index }}
124124
path: ./wheelhouse/*.whl
@@ -139,12 +139,12 @@ jobs:
139139
CIBW_BUILD_VERBOSITY: 3
140140

141141
steps:
142-
- uses: actions/download-artifact@v5
142+
- uses: actions/download-artifact@v6
143143
with:
144144
name: artifact-sdist
145145
path: dist
146146

147-
- uses: actions/setup-python@v5
147+
- uses: actions/setup-python@v6
148148

149149
- name: Copy wheel
150150
run: cp dist/*.tar.gz rapidfuzz.tar.gz
@@ -158,13 +158,13 @@ jobs:
158158
image: tonistiigi/binfmt:qemu-v8.1.5
159159

160160
- name: Build wheel
161-
uses: pypa/cibuildwheel@v3.1.4
161+
uses: pypa/cibuildwheel@v3.2.1
162162
with:
163163
package-dir: rapidfuzz.tar.gz
164164
output-dir: wheelhouse
165165

166166
- name: Upload wheels
167-
uses: actions/upload-artifact@v4
167+
uses: actions/upload-artifact@v5
168168
with:
169169
name: artifact-${{ github.job }}-${{ strategy.job-index }}
170170
path: ./wheelhouse/*.whl
@@ -185,24 +185,24 @@ jobs:
185185
CIBW_BUILD_VERBOSITY: 3
186186

187187
steps:
188-
- uses: actions/download-artifact@v5
188+
- uses: actions/download-artifact@v6
189189
with:
190190
name: artifact-sdist
191191
path: dist
192192

193-
- uses: actions/setup-python@v5
193+
- uses: actions/setup-python@v6
194194

195195
- name: Copy wheel
196196
run: cp dist/*.tar.gz rapidfuzz.tar.gz
197197

198198
- name: Build wheel
199-
uses: pypa/cibuildwheel@v3.1.4
199+
uses: pypa/cibuildwheel@v3.2.1
200200
with:
201201
package-dir: rapidfuzz.tar.gz
202202
output-dir: wheelhouse
203203

204204
- name: Upload wheels
205-
uses: actions/upload-artifact@v4
205+
uses: actions/upload-artifact@v5
206206
with:
207207
name: artifact-${{ github.job }}-${{ strategy.job-index }}
208208
path: ./wheelhouse/*.whl
@@ -216,26 +216,26 @@ jobs:
216216
#CIBW_BUILD_VERBOSITY: 3
217217

218218
steps:
219-
- uses: actions/download-artifact@v5
219+
- uses: actions/download-artifact@v6
220220
with:
221221
name: artifact-sdist
222222
path: dist
223223

224-
- uses: actions/setup-python@v5
224+
- uses: actions/setup-python@v6
225225
with:
226226
python-version: "3.12"
227227

228228
- name: Copy wheel
229229
run: cp dist/*.tar.gz rapidfuzz.tar.gz
230230

231231
- name: Build wheel
232-
uses: pypa/cibuildwheel@v3.1.4
232+
uses: pypa/cibuildwheel@v3.2.1
233233
with:
234234
package-dir: rapidfuzz.tar.gz
235235
output-dir: wheelhouse
236236

237237
- name: Upload wheels
238-
uses: actions/upload-artifact@v4
238+
uses: actions/upload-artifact@v5
239239
with:
240240
name: pyodide-wheel
241241
path: ./wheelhouse/*.whl
@@ -249,10 +249,10 @@ jobs:
249249
permissions:
250250
id-token: write
251251
steps:
252-
- uses: actions/download-artifact@v5
252+
- uses: actions/download-artifact@v6
253253
with:
254254
path: dist
255255
pattern: artifact-*
256256
merge-multiple: true
257257

258-
- uses: pypa/gh-action-pypi-publish@v1.12.4
258+
- uses: pypa/gh-action-pypi-publish@v1.13.0

.github/workflows/submodule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run: |
2020
git submodule foreach --recursive 'git fetch --tags'
2121
22-
- uses: "actions/setup-python@v5"
22+
- uses: "actions/setup-python@v6"
2323
with:
2424
python-version: "3.11"
2525

0 commit comments

Comments
 (0)