Skip to content

Commit 086c8cf

Browse files
dependabot[bot]maxbachmann
authored andcommitted
Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [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/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.3.0 to 3.3.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.3.0...v3.3.1) --- updated-dependencies: - 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.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6367b5c commit 086c8cf

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/pythonbuild.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
tools/seg_wrapper.sh pytest tests
4747
48-
- uses: actions/upload-artifact@v5
48+
- uses: actions/upload-artifact@v6
4949
with:
5050
name: artifact-sdist
5151
path: dist/*.tar.gz
@@ -63,7 +63,7 @@ jobs:
6363
CIBW_BUILD_VERBOSITY: 3
6464

6565
steps:
66-
- uses: actions/download-artifact@v6
66+
- uses: actions/download-artifact@v7
6767
with:
6868
name: artifact-sdist
6969
path: dist
@@ -74,13 +74,13 @@ jobs:
7474
run: cp dist/*.tar.gz levenshtein.tar.gz
7575

7676
- name: Build wheels
77-
uses: pypa/[email protected].0
77+
uses: pypa/[email protected].1
7878
with:
7979
package-dir: levenshtein.tar.gz
8080
output-dir: wheelhouse
8181

8282
- name: Upload wheels
83-
uses: actions/upload-artifact@v5
83+
uses: actions/upload-artifact@v6
8484
with:
8585
name: artifact-${{ github.job }}-${{ strategy.job-index }}
8686
path: ./wheelhouse/*.whl
@@ -98,7 +98,7 @@ jobs:
9898
CIBW_BUILD_VERBOSITY: 3
9999

100100
steps:
101-
- uses: actions/download-artifact@v6
101+
- uses: actions/download-artifact@v7
102102
with:
103103
name: artifact-sdist
104104
path: dist
@@ -109,13 +109,13 @@ jobs:
109109
run: cp dist/*.tar.gz levenshtein.tar.gz
110110

111111
- name: Build wheels
112-
uses: pypa/[email protected].0
112+
uses: pypa/[email protected].1
113113
with:
114114
package-dir: levenshtein.tar.gz
115115
output-dir: wheelhouse
116116

117117
- name: Upload wheels
118-
uses: actions/upload-artifact@v5
118+
uses: actions/upload-artifact@v6
119119
with:
120120
name: artifact-${{ github.job }}-${{ strategy.job-index }}
121121
path: ./wheelhouse/*.whl
@@ -129,7 +129,7 @@ jobs:
129129
CIBW_BUILD_VERBOSITY: 3
130130

131131
steps:
132-
- uses: actions/download-artifact@v6
132+
- uses: actions/download-artifact@v7
133133
with:
134134
name: artifact-sdist
135135
path: dist
@@ -140,13 +140,13 @@ jobs:
140140
run: cp dist/*.tar.gz levenshtein.tar.gz
141141

142142
- name: Build wheel
143-
uses: pypa/[email protected].0
143+
uses: pypa/[email protected].1
144144
with:
145145
package-dir: levenshtein.tar.gz
146146
output-dir: wheelhouse
147147

148148
- name: Upload wheels
149-
uses: actions/upload-artifact@v5
149+
uses: actions/upload-artifact@v6
150150
with:
151151
name: artifact-${{ github.job }}-${{ strategy.job-index }}
152152
path: ./wheelhouse/*.whl
@@ -165,7 +165,7 @@ jobs:
165165
CIBW_BUILD_VERBOSITY: 3
166166

167167
steps:
168-
- uses: actions/download-artifact@v6
168+
- uses: actions/download-artifact@v7
169169
with:
170170
name: artifact-sdist
171171
path: dist
@@ -176,13 +176,13 @@ jobs:
176176
run: cp dist/*.tar.gz levenshtein.tar.gz
177177

178178
- name: Build wheel
179-
uses: pypa/[email protected].0
179+
uses: pypa/[email protected].1
180180
with:
181181
package-dir: levenshtein.tar.gz
182182
output-dir: wheelhouse
183183

184184
- name: Upload wheels
185-
uses: actions/upload-artifact@v5
185+
uses: actions/upload-artifact@v6
186186
with:
187187
name: artifact-${{ github.job }}-${{ strategy.job-index }}
188188
path: ./wheelhouse/*.whl
@@ -197,7 +197,7 @@ jobs:
197197
permissions:
198198
id-token: write
199199
steps:
200-
- uses: actions/download-artifact@v6
200+
- uses: actions/download-artifact@v7
201201
with:
202202
path: dist
203203
pattern: artifact-*

0 commit comments

Comments
 (0)