Skip to content

Commit a9eb488

Browse files
Bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [supercharge/mongodb-github-action](https://github.com/supercharge/mongodb-github-action). 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) Updates `supercharge/mongodb-github-action` from 1.12.0 to 1.12.1 - [Release notes](https://github.com/supercharge/mongodb-github-action/releases) - [Changelog](https://github.com/supercharge/mongodb-github-action/blob/main/CHANGELOG.md) - [Commits](supercharge/mongodb-github-action@90004df...315db7f) --- 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 - dependency-name: supercharge/mongodb-github-action dependency-version: 1.12.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fabba74 commit a9eb488

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@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/

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: ${{ matrix.python-version }}
1818
allow-prereleases: true
1919
- name: Start MongoDB
20-
uses: supercharge/mongodb-github-action@90004df786821b6308fb02299e5835d0dae05d0d # 1.12.0
20+
uses: supercharge/mongodb-github-action@315db7fe45ac2880b7758f1933e6e5d59afd5e94 # 1.12.1
2121
with:
2222
mongodb-version: "4.4"
2323
mongodb-replica-set: test-rs

0 commit comments

Comments
 (0)