Skip to content

Commit 8c8f9cc

Browse files
Bump the actions group with 3 updates (#71)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e12dfab commit 8c8f9cc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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@v5
54+
- uses: actions/upload-artifact@v6
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@v6
65+
uses: actions/download-artifact@v7
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@v5
71+
- uses: actions/upload-artifact@v6
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@v6
73+
uses: actions/download-artifact@v7
7474
with:
7575
name: all-dist-${{ github.run_id }}
7676
path: dist/

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
mongodb-version: "4.4"
2323
mongodb-replica-set: test-rs
2424
# add caching to reduce bandwidth and save time
25-
- uses: actions/cache@v4
25+
- uses: actions/cache@v5
2626
with:
2727
path: ~/.cache/pip
2828
key: ${{ runner.os }}-${{ matrix.python-version}}-pip-${{ hashFiles('**/setup.py') }}

0 commit comments

Comments
 (0)