Skip to content

Commit 952cc30

Browse files
Bump the actions group with 2 updates (#358)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 752c641 commit 952cc30

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/dist-python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
MACOSX_DEPLOYMENT_TARGET: "12.0"
107107
run: python -m cibuildwheel --output-dir wheelhouse
108108

109-
- uses: actions/upload-artifact@v4
109+
- uses: actions/upload-artifact@v5
110110
with:
111111
name: ${{ matrix.python }}-${{ startsWith(matrix.buildplat[1], 'macosx') && 'macosx' || matrix.buildplat[1] }}
112112
path: ./bindings/python/wheelhouse/*.whl
@@ -144,7 +144,7 @@ jobs:
144144
cd ..
145145
python -c "from pymongoarrow.lib import libbson_version"
146146
147-
- uses: actions/upload-artifact@v4
147+
- uses: actions/upload-artifact@v5
148148
with:
149149
name: "sdist"
150150
path: ./bindings/python/dist/*.tar.gz
@@ -155,13 +155,13 @@ jobs:
155155
name: Download Wheels
156156
steps:
157157
- name: Download all workflow run artifacts
158-
uses: actions/download-artifact@v5
158+
uses: actions/download-artifact@v6
159159
- name: Flatten directory
160160
working-directory: .
161161
run: |
162162
find . -mindepth 2 -type f -exec mv {} . \;
163163
find . -type d -empty -delete
164-
- uses: actions/upload-artifact@v4
164+
- uses: actions/upload-artifact@v5
165165
with:
166166
name: all-dist-${{ github.run_id }}
167167
path: "./*"

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
id-token: write
8484
steps:
8585
- name: Download all the dists
86-
uses: actions/download-artifact@v5
86+
uses: actions/download-artifact@v6
8787
with:
8888
name: all-dist-${{ github.run_id }}
8989
path: dist/

0 commit comments

Comments
 (0)