Skip to content

Commit 1b5c7ee

Browse files
dependabot[bot]peterbarker
authored andcommitted
.github: Bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `docker/setup-qemu-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v3...v4) Updates `pypa/cibuildwheel` from 3.3.0 to 3.4.0 - [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.4.0) 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' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/cibuildwheel dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 93489bc commit 1b5c7ee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/python-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- uses: actions/checkout@v6
8080
- name: Set up QEMU
8181
if: matrix.is_riscv
82-
uses: docker/setup-qemu-action@v3
82+
uses: docker/setup-qemu-action@v4
8383
with:
8484
platforms: riscv64
8585
- name: Install mavlink definitions
@@ -91,13 +91,13 @@ jobs:
9191
shell: bash
9292
run: echo "CIBW_BUILD=cp${PYTHON_VERSION/./}-*" >> $GITHUB_ENV
9393
- name: Build wheels
94-
uses: pypa/cibuildwheel@v3.3.0
94+
uses: pypa/cibuildwheel@v3.4.0
9595
env:
9696
PYMAVLINK_FAST_INDEX: "1"
9797
CIBW_BUILD: ${{ matrix.cibw_build }}
9898
CIBW_ARCHS: ${{ matrix.cibw_archs }}
9999
- name: Upload wheels
100-
uses: actions/upload-artifact@v6
100+
uses: actions/upload-artifact@v7
101101
with:
102102
name: ${{ matrix.name }}
103103
path: wheelhouse/*.whl
@@ -124,7 +124,7 @@ jobs:
124124
- name: Build sdist
125125
run: pipx run build --sdist
126126
- name: Upload sdist
127-
uses: actions/upload-artifact@v6
127+
uses: actions/upload-artifact@v7
128128
with:
129129
name: sdist
130130
path: dist/*.tar.gz
@@ -135,7 +135,7 @@ jobs:
135135
runs-on: ubuntu-latest
136136
steps:
137137
- name: Download all artifacts
138-
uses: actions/download-artifact@v7
138+
uses: actions/download-artifact@v8
139139
with:
140140
path: dist
141141
merge-multiple: true
@@ -144,7 +144,7 @@ jobs:
144144
run: ls -lh dist/
145145

146146
- name: Upload final dist artifact
147-
uses: actions/upload-artifact@v6
147+
uses: actions/upload-artifact@v7
148148
with:
149149
name: dist
150150
path: dist/*

0 commit comments

Comments
 (0)