Skip to content

Commit 627d811

Browse files
Bump the actions group across 1 directory with 5 updates
Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6` | `7` | | [supercharge/mongodb-github-action](https://github.com/supercharge/mongodb-github-action) | `1.12.0` | `1.12.1` | | [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action) | `1aba86d8e1245be7a9ca003d46fcc85a76e6aa61` | `5fa0711fa51dd83a19dbfcf0195cfb02e61571ef` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) 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) Updates `zizmorcore/zizmor-action` from 1aba86d8e1245be7a9ca003d46fcc85a76e6aa61 to 5fa0711fa51dd83a19dbfcf0195cfb02e61571ef - [Release notes](https://github.com/zizmorcore/zizmor-action/releases) - [Commits](zizmorcore/zizmor-action@1aba86d...5fa0711) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' 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 - dependency-name: zizmorcore/zizmor-action dependency-version: 5fa0711fa51dd83a19dbfcf0195cfb02e61571ef dependency-type: direct:production dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1f2bbf3 commit 627d811

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/dist-python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
permissions:
3131
contents: write
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
with:
3535
persist-credentials: false
3636

@@ -54,7 +54,7 @@ jobs:
5454
cd ..
5555
python -c "import django_mongodb_extensions"
5656
57-
- uses: actions/upload-artifact@v5
57+
- uses: actions/upload-artifact@v6
5858
with:
5959
name: "dist"
6060
path: ./dist/*.*
@@ -67,13 +67,13 @@ jobs:
6767
contents: read
6868
steps:
6969
- name: Download all workflow run artifacts
70-
uses: actions/download-artifact@v6
70+
uses: actions/download-artifact@v7
7171
- name: Flatten directory
7272
working-directory: .
7373
run: |
7474
find . -mindepth 2 -type f -exec mv {} . \;
7575
find . -type d -empty -delete
76-
- uses: actions/upload-artifact@v5
76+
- uses: actions/upload-artifact@v6
7777
with:
7878
name: all-dist-${{ github.run_id }}
7979
path: "./*"

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
id-token: write
7373
steps:
7474
- name: Download all the dists
75-
uses: actions/download-artifact@v6
75+
uses: actions/download-artifact@v7
7676
with:
7777
name: all-dist-${{ github.run_id }}
7878
path: dist/

.github/workflows/test-python.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
static:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
with:
3030
persist-credentials: false
3131
fetch-depth: 0
@@ -45,7 +45,7 @@ jobs:
4545
fail-fast: false
4646
name: CPython ${{ matrix.python-version }}-${{ matrix.os }}
4747
steps:
48-
- uses: actions/checkout@v5
48+
- uses: actions/checkout@v6
4949
with:
5050
persist-credentials: false
5151
fetch-depth: 0
@@ -57,7 +57,7 @@ jobs:
5757
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
5858
- name: Start MongoDB on Linux
5959
if: ${{ startsWith(runner.os, 'Linux') }}
60-
uses: supercharge/mongodb-github-action@90004df786821b6308fb02299e5835d0dae05d0d # 1.12.0
60+
uses: supercharge/mongodb-github-action@315db7fe45ac2880b7758f1933e6e5d59afd5e94 # 1.12.1
6161
with:
6262
mongodb-version: ${{ env.MAX_MONGODB }}
6363
mongodb-replica-set: test-rs
@@ -66,7 +66,7 @@ jobs:
6666
build-min:
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@v5
69+
- uses: actions/checkout@v6
7070
with:
7171
persist-credentials: false
7272
fetch-depth: 0
@@ -82,7 +82,7 @@ jobs:
8282
enable-cache: true
8383
python-version: ${{ env.MIN_PYTHON }}
8484
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
85-
- uses: supercharge/mongodb-github-action@90004df786821b6308fb02299e5835d0dae05d0d # 1.12.0
85+
- uses: supercharge/mongodb-github-action@315db7fe45ac2880b7758f1933e6e5d59afd5e94 # 1.12.1
8686
with:
8787
mongodb-version: ${{ env.MIN_MONGODB }}
8888
mongodb-replica-set: test-rs

.github/workflows/zizmor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
security-events: write
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
persist-credentials: false
2020
- name: Run zizmor 🌈
21-
uses: zizmorcore/zizmor-action@1aba86d8e1245be7a9ca003d46fcc85a76e6aa61
21+
uses: zizmorcore/zizmor-action@5fa0711fa51dd83a19dbfcf0195cfb02e61571ef

0 commit comments

Comments
 (0)