Skip to content

Commit ee509b1

Browse files
Bump the actions group across 1 directory with 4 updates
Bumps the actions group with 4 updates in the / directory: [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action). 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@c7c5346...ce36039) 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) Updates `zizmorcore/zizmor-action` from 0.5.0 to 0.5.2 - [Release notes](https://github.com/zizmorcore/zizmor-action/releases) - [Commits](zizmorcore/zizmor-action@0dce257...71321a2) --- 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: 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 - dependency-name: zizmorcore/zizmor-action dependency-version: 0.5.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ec9d954 commit ee509b1

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/dist.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Set up QEMU
6363
if: runner.os == 'Linux'
64-
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3
64+
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
6565
with:
6666
# setup-qemu-action by default uses `tonistiigi/binfmt:latest` image,
6767
# which is out of date. This causes seg faults during build.
@@ -92,7 +92,7 @@ jobs:
9292
# Free-threading builds:
9393
ls wheelhouse/*cp314t*.whl
9494
95-
- uses: actions/upload-artifact@v6
95+
- uses: actions/upload-artifact@v7
9696
with:
9797
name: wheel-${{ matrix.buildplat[1] }}
9898
path: ./wheelhouse/*.whl
@@ -125,7 +125,7 @@ jobs:
125125
cd ..
126126
python -c "from pymongo import has_c; assert has_c()"
127127
128-
- uses: actions/upload-artifact@v6
128+
- uses: actions/upload-artifact@v7
129129
with:
130130
name: "sdist"
131131
path: ./dist/*.tar.gz
@@ -136,13 +136,13 @@ jobs:
136136
name: Download Wheels
137137
steps:
138138
- name: Download all workflow run artifacts
139-
uses: actions/download-artifact@v7
139+
uses: actions/download-artifact@v8
140140
- name: Flatten directory
141141
working-directory: .
142142
run: |
143143
find . -mindepth 2 -type f -exec mv {} . \;
144144
find . -type d -empty -delete
145-
- uses: actions/upload-artifact@v6
145+
- uses: actions/upload-artifact@v7
146146
with:
147147
name: all-dist-${{ github.run_id }}
148148
path: "./*"

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
id-token: write
7676
steps:
7777
- name: Download all the dists
78-
uses: actions/download-artifact@v7
78+
uses: actions/download-artifact@v8
7979
with:
8080
name: all-dist-${{ github.run_id }}
8181
path: dist/

.github/workflows/sbom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
run: rm -rf .venv .venv-sbom sbom-requirements.txt
6868

6969
- name: Upload SBOM artifact
70-
uses: actions/upload-artifact@v6
70+
uses: actions/upload-artifact@v7
7171
with:
7272
name: sbom
7373
path: sbom.json

.github/workflows/test-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ jobs:
245245
run: |
246246
pip install build
247247
python -m build --sdist
248-
- uses: actions/upload-artifact@v6
248+
- uses: actions/upload-artifact@v7
249249
with:
250250
name: "sdist"
251251
path: dist/*.tar.gz
@@ -257,7 +257,7 @@ jobs:
257257
timeout-minutes: 20
258258
steps:
259259
- name: Download sdist
260-
uses: actions/download-artifact@v7
260+
uses: actions/download-artifact@v8
261261
with:
262262
path: sdist/
263263
- name: Unpack SDist

.github/workflows/zizmor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
with:
1919
persist-credentials: false
2020
- name: Run zizmor 🌈
21-
uses: zizmorcore/zizmor-action@0dce2577a4760a2749d8cfb7a84b7d5585ebcb7d # v0.5.0
21+
uses: zizmorcore/zizmor-action@71321a20a9ded102f6e9ce5718a2fcec2c4f70d8 # v0.5.2

0 commit comments

Comments
 (0)