Skip to content

Commit ef0e662

Browse files
Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/setup-python](https://github.com/actions/setup-python), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). 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 3.1.4 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@v3.1.4...v3.2.0) 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: pypa/cibuildwheel dependency-version: 3.2.0 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 ec38e81 commit ef0e662

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
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: 12 additions & 12 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

@@ -74,10 +74,10 @@ jobs:
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
@@ -106,13 +106,13 @@ jobs:
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
@@ -144,7 +144,7 @@ jobs:
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,7 +158,7 @@ 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
@@ -190,13 +190,13 @@ jobs:
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
@@ -221,15 +221,15 @@ jobs:
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
@@ -255,4 +255,4 @@ jobs:
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)