Skip to content

Commit 4642677

Browse files
Bump the actions group with 2 updates
Bumps the actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). 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: 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>
1 parent f533157 commit 4642677

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/dist.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

0 commit comments

Comments
 (0)