Skip to content

Commit caab9b9

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 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent fabba74 commit caab9b9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/dist-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
cd ..
5252
python -c "from pymongoexplain import ExplainableCollection"
5353
54-
- uses: actions/upload-artifact@v4
54+
- uses: actions/upload-artifact@v5
5555
with:
5656
name: "dist"
5757
path: ./dist/*.*
@@ -62,13 +62,13 @@ jobs:
6262
name: Download Dist
6363
steps:
6464
- name: Download all workflow run artifacts
65-
uses: actions/download-artifact@v5
65+
uses: actions/download-artifact@v6
6666
- name: Flatten directory
6767
working-directory: .
6868
run: |
6969
find . -mindepth 2 -type f -exec mv {} . \;
7070
find . -type d -empty -delete
71-
- uses: actions/upload-artifact@v4
71+
- uses: actions/upload-artifact@v5
7272
with:
7373
name: all-dist-${{ github.run_id }}
7474
path: "./*"

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
id-token: write
7171
steps:
7272
- name: Download all the dists
73-
uses: actions/download-artifact@v5
73+
uses: actions/download-artifact@v6
7474
with:
7575
name: all-dist-${{ github.run_id }}
7676
path: dist/

0 commit comments

Comments
 (0)