Skip to content

Commit 8168f4e

Browse files
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-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) Updates `pypa/cibuildwheel` from 3.2.1 to 3.3.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.2.1...v3.3.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/cibuildwheel dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0ef2a49 commit 8168f4e

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
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@v5"
15+
- uses: "actions/checkout@v6"
1616
with:
1717
submodules: 'true'
1818

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

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

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

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

9999
- uses: "actions/setup-python@v6"
100100
with:
@@ -146,7 +146,7 @@ jobs:
146146
os: windows-11-arm
147147

148148
steps:
149-
- uses: "actions/checkout@v5"
149+
- uses: "actions/checkout@v6"
150150
with:
151151
submodules: 'true'
152152
- uses: "actions/setup-python@v6"
@@ -197,11 +197,11 @@ jobs:
197197
name: "Test sse2 code on Linux (gcc)"
198198
runs-on: ubuntu-latest
199199
steps:
200-
- uses: "actions/checkout@v5"
200+
- uses: "actions/checkout@v6"
201201
with:
202202
submodules: 'true'
203203

204-
- uses: "actions/checkout@v5"
204+
- uses: "actions/checkout@v6"
205205
with:
206206
repository: rapidfuzz/intel-sde
207207
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@v5"
13+
- uses: "actions/checkout@v6"
1414
with:
1515
submodules: 'true'
1616
- uses: "actions/setup-python@v6"

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
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@v5
25+
- uses: actions/checkout@v6
2626
with:
2727
submodules: 'true'
2828
- uses: actions/setup-python@v6

.github/workflows/releasebuild.yml

Lines changed: 6 additions & 6 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@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
submodules: 'true'
1818
- uses: actions/setup-python@v6
@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
tools/seg_wrapper.sh pytest tests
5050
51-
- uses: actions/upload-artifact@v5
51+
- uses: actions/upload-artifact@v6
5252
with:
5353
name: artifact-sdist
5454
path: dist/*.tar.gz
@@ -92,7 +92,7 @@ jobs:
9292
platform: pyodide
9393

9494
steps:
95-
- uses: actions/download-artifact@v6
95+
- uses: actions/download-artifact@v7
9696
with:
9797
name: artifact-sdist
9898
path: dist
@@ -102,15 +102,15 @@ jobs:
102102
run: cp dist/*.tar.gz rapidfuzz.tar.gz
103103

104104
- name: Build wheels
105-
uses: pypa/cibuildwheel@v3.2.1
105+
uses: pypa/cibuildwheel@v3.3.0
106106
env:
107107
CIBW_PLATFORM: ${{ matrix.platform || 'auto' }}
108108
CIBW_ARCHS: ${{ matrix.archs || 'auto' }}
109109
with:
110110
package-dir: rapidfuzz.tar.gz
111111
output-dir: wheelhouse
112112

113-
- uses: actions/upload-artifact@v5
113+
- uses: actions/upload-artifact@v6
114114
with:
115115
name: artifact-${{ matrix.os }}-${{ strategy.job-index }}
116116
path: ./wheelhouse/*.whl
@@ -124,7 +124,7 @@ jobs:
124124
permissions:
125125
id-token: write
126126
steps:
127-
- uses: actions/download-artifact@v6
127+
- uses: actions/download-artifact@v7
128128
with:
129129
path: dist
130130
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@v5"
14+
- uses: "actions/checkout@v6"
1515
with:
1616
submodules: 'true'
1717
# checkout never fetches tags for submodules so do it manually

0 commit comments

Comments
 (0)