Skip to content

Commit 50cf3af

Browse files
Bump the actions group across 1 directory with 4 updates
Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv), [supercharge/mongodb-github-action](https://github.com/supercharge/mongodb-github-action) and [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action). 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 `astral-sh/setup-uv` from 7.1.2 to 7.1.4 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@8585678...1e862df) 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 c0e2b1c877e25a91d1d747c438d49199cad29698 - [Release notes](https://github.com/zizmorcore/zizmor-action/releases) - [Commits](zizmorcore/zizmor-action@1aba86d...c0e2b1c) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 7.1.4 dependency-type: direct:production update-type: version-update:semver-patch 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: c0e2b1c877e25a91d1d747c438d49199cad29698 dependency-type: direct:production dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1f2bbf3 commit 50cf3af

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/dist-python.yml

Lines changed: 1 addition & 1 deletion
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

.github/workflows/test-python.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ 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
3232
- name: Install uv
33-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
33+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7
3434
with:
3535
enable-cache: true
3636
python-version: ${{ matrix.python-version }}
@@ -45,19 +45,19 @@ 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
5252
- name: Install uv
53-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
53+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7
5454
with:
5555
enable-cache: true
5656
python-version: ${{ matrix.python-version }}
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,23 +66,23 @@ 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
7373
- name: Install uv
74-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
74+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7
7575
with:
7676
enable-cache: true
7777
python-version: ${{ env.MIN_PYTHON }}
7878
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
7979
- name: Install uv
80-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
80+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7
8181
with:
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@c0e2b1c877e25a91d1d747c438d49199cad29698

0 commit comments

Comments
 (0)