Skip to content

Commit 18e7eb2

Browse files
dependabot[bot]maxbachmann
authored andcommitted
Bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). 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/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `pypa/cibuildwheel` from 2.23.3 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.23.3...v3.1.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: actions/upload-pages-artifact dependency-version: '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: pypa/cibuildwheel dependency-version: 3.1.4 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9c7d5f2 commit 18e7eb2

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

.github/workflows/branchbuild.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: "ubuntu-latest"
1313

1414
steps:
15-
- uses: "actions/checkout@v4"
15+
- uses: "actions/checkout@v5"
1616
with:
1717
submodules: 'true'
1818

@@ -50,7 +50,7 @@ jobs:
5050
runs-on: "ubuntu-latest"
5151

5252
steps:
53-
- uses: "actions/checkout@v4"
53+
- uses: "actions/checkout@v5"
5454

5555
- uses: "actions/setup-python@v5"
5656
with:
@@ -94,7 +94,7 @@ jobs:
9494
runs-on: "ubuntu-latest"
9595

9696
steps:
97-
- uses: "actions/checkout@v4"
97+
- uses: "actions/checkout@v5"
9898

9999
- uses: "actions/setup-python@v5"
100100
with:
@@ -143,7 +143,7 @@ jobs:
143143
os: [ubuntu-latest, windows-latest, macos-13]
144144

145145
steps:
146-
- uses: "actions/checkout@v4"
146+
- uses: "actions/checkout@v5"
147147
with:
148148
submodules: 'true'
149149
- uses: "actions/setup-python@v5"
@@ -194,11 +194,11 @@ jobs:
194194
name: "Test sse2 code on Linux (gcc)"
195195
runs-on: ubuntu-latest
196196
steps:
197-
- uses: "actions/checkout@v4"
197+
- uses: "actions/checkout@v5"
198198
with:
199199
submodules: 'true'
200200

201-
- uses: "actions/checkout@v4"
201+
- uses: "actions/checkout@v5"
202202
with:
203203
repository: rapidfuzz/intel-sde
204204
path: sde

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: "Generate coverage report for tests"
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: "actions/checkout@v4"
13+
- uses: "actions/checkout@v5"
1414
with:
1515
submodules: 'true'
1616
- uses: "actions/setup-python@v5"

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323
runs-on: [ubuntu-latest]
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
with:
2727
submodules: 'true'
2828
- uses: actions/setup-python@v5
@@ -36,7 +36,7 @@ jobs:
3636
run: sphinx-build -b html docs build/html
3737

3838
- name: Upload artifact
39-
uses: actions/upload-pages-artifact@v3
39+
uses: actions/upload-pages-artifact@v4
4040
with:
4141
path: "build/html"
4242

.github/workflows/releasebuild.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Build source distribution
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
submodules: 'true'
1818
- uses: actions/setup-python@v5
@@ -67,7 +67,7 @@ jobs:
6767
CIBW_BUILD_VERBOSITY: 3
6868

6969
steps:
70-
- uses: actions/download-artifact@v4
70+
- uses: actions/download-artifact@v5
7171
with:
7272
name: artifact-sdist
7373
path: dist
@@ -78,7 +78,7 @@ jobs:
7878
- uses: actions/setup-python@v5
7979

8080
- name: Build wheels
81-
uses: pypa/cibuildwheel@v2.23.3
81+
uses: pypa/cibuildwheel@v3.1.4
8282
with:
8383
package-dir: rapidfuzz.tar.gz
8484
output-dir: wheelhouse
@@ -103,7 +103,7 @@ jobs:
103103
CIBW_BUILD_VERBOSITY: 3
104104

105105
steps:
106-
- uses: actions/download-artifact@v4
106+
- uses: actions/download-artifact@v5
107107
with:
108108
name: artifact-sdist
109109
path: dist
@@ -114,7 +114,7 @@ jobs:
114114
run: cp dist/*.tar.gz rapidfuzz.tar.gz
115115

116116
- name: Build wheels
117-
uses: pypa/cibuildwheel@v2.23.3
117+
uses: pypa/cibuildwheel@v3.1.4
118118
with:
119119
package-dir: rapidfuzz.tar.gz
120120
output-dir: wheelhouse
@@ -155,7 +155,7 @@ jobs:
155155
CIBW_BUILD_VERBOSITY: 3
156156

157157
steps:
158-
- uses: actions/download-artifact@v4
158+
- uses: actions/download-artifact@v5
159159
with:
160160
name: artifact-sdist
161161
path: dist
@@ -174,7 +174,7 @@ jobs:
174174
image: tonistiigi/binfmt:qemu-v8.1.5
175175

176176
- name: Build wheel
177-
uses: pypa/cibuildwheel@v2.23.3
177+
uses: pypa/cibuildwheel@v3.1.4
178178
with:
179179
package-dir: rapidfuzz.tar.gz
180180
output-dir: wheelhouse
@@ -194,7 +194,7 @@ jobs:
194194
CIBW_BUILD_VERBOSITY: 3
195195

196196
steps:
197-
- uses: actions/download-artifact@v4
197+
- uses: actions/download-artifact@v5
198198
with:
199199
name: artifact-sdist
200200
path: dist
@@ -207,7 +207,7 @@ jobs:
207207
run: cp dist/*.tar.gz rapidfuzz.tar.gz
208208

209209
- name: Build wheel
210-
uses: pypa/cibuildwheel@v2.23.3
210+
uses: pypa/cibuildwheel@v3.1.4
211211
with:
212212
package-dir: rapidfuzz.tar.gz
213213
output-dir: wheelhouse
@@ -227,7 +227,7 @@ jobs:
227227
permissions:
228228
id-token: write
229229
steps:
230-
- uses: actions/download-artifact@v4
230+
- uses: actions/download-artifact@v5
231231
with:
232232
path: dist
233233
pattern: artifact-*

.github/workflows/submodule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: "actions/checkout@v4"
14+
- uses: "actions/checkout@v5"
1515
with:
1616
submodules: 'true'
1717
# checkout never fetches tags for submodules so do it manually

0 commit comments

Comments
 (0)