Skip to content

Commit aaaa491

Browse files
chore(deps): bump the actions group across 1 directory with 5 updates (#346)
Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3.7.0` | `4.0.0` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `8.0.0` | `8.1.0` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `3.3` | `3.4` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `7` | `8` | Updates `docker/setup-qemu-action` from 3.7.0 to 4.0.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v3.7.0...v4.0.0) Updates `astral-sh/setup-uv` from 8.0.0 to 8.1.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v8.0.0...v8.1.0) Updates `pypa/cibuildwheel` from 3.3 to 3.4 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.3...v3.4) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) --- updated-dependencies: - dependency-name: docker/setup-qemu-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: '3.4' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ec0c0e4 commit aaaa491

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,20 +82,20 @@ jobs:
8282
submodules: 'recursive'
8383

8484
- name: Set up QEMU
85-
uses: docker/setup-qemu-action@v3.7.0
85+
uses: docker/setup-qemu-action@v4.0.0
8686
if: runner.os == 'Linux' && runner.arch == 'X64'
8787

88-
- uses: astral-sh/setup-uv@v8.0.0
88+
- uses: astral-sh/setup-uv@v8.1.0
8989
with:
9090
enable-cache: false
9191

9292
- name: Build wheels
93-
uses: pypa/cibuildwheel@v3.3
93+
uses: pypa/cibuildwheel@v3.4
9494
env:
9595
CIBW_ARCHS: "${{ matrix.arch }}"
9696
CIBW_BUILD: "cp39-${{ matrix.build }}*"
9797

98-
- uses: actions/upload-artifact@v6
98+
- uses: actions/upload-artifact@v7
9999
with:
100100
name: cibw-wheels-${{ matrix.os }}-${{ matrix.build }}${{ matrix.arch }}
101101
path: ./wheelhouse/*.whl
@@ -121,7 +121,7 @@ jobs:
121121
- name: Build SDist
122122
run: pipx run build --sdist
123123

124-
- uses: actions/upload-artifact@v6
124+
- uses: actions/upload-artifact@v7
125125
with:
126126
name: cibw-sdist
127127
path: dist/*.tar.gz
@@ -144,7 +144,7 @@ jobs:
144144
python-version: ${{ matrix.python }}
145145
update-environment: false
146146

147-
- uses: astral-sh/setup-uv@v8.0.0
147+
- uses: astral-sh/setup-uv@v8.1.0
148148
with:
149149
enable-cache: false
150150

@@ -153,7 +153,7 @@ jobs:
153153
uv venv --python "${{ steps.python.outputs.python-path }}"
154154
uv pip install pip --group test
155155
156-
- uses: actions/download-artifact@v7
156+
- uses: actions/download-artifact@v8
157157
with:
158158
name: cibw-sdist
159159
path: sdist
@@ -185,7 +185,7 @@ jobs:
185185
needs: [build_wheels, build_sdist, test_sdist]
186186
runs-on: ubuntu-latest
187187
steps:
188-
- uses: actions/download-artifact@v7
188+
- uses: actions/download-artifact@v8
189189
with:
190190
pattern: cibw-*
191191
path: dist
@@ -204,7 +204,7 @@ jobs:
204204
permissions:
205205
id-token: write
206206
steps:
207-
- uses: actions/download-artifact@v7
207+
- uses: actions/download-artifact@v8
208208
with:
209209
pattern: cibw-*
210210
path: dist

0 commit comments

Comments
 (0)