Skip to content

Commit ae1a54e

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 | | --- | --- | --- | | [github/codeql-action](https://github.com/github/codeql-action) | `3.30.5` | `4.31.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6.7.0` | `7.1.2` | | [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action) | `c323c83e3ab58baf4acbc7b6b39eef0e0cb14e4d` | `da5ac40c5419dcf7f21630fb2f95e725ae8fb9d5` | Updates `github/codeql-action` from 3.30.5 to 4.31.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@3599b3b...4e94bd1) 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 `astral-sh/setup-uv` from 6.7.0 to 7.1.2 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@b75a909...8585678) Updates `zizmorcore/zizmor-action` from c323c83e3ab58baf4acbc7b6b39eef0e0cb14e4d to da5ac40c5419dcf7f21630fb2f95e725ae8fb9d5 - [Release notes](https://github.com/zizmorcore/zizmor-action/releases) - [Commits](zizmorcore/zizmor-action@c323c83...da5ac40) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - 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: astral-sh/setup-uv dependency-version: 7.1.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: zizmorcore/zizmor-action dependency-version: da5ac40c5419dcf7f21630fb2f95e725ae8fb9d5 dependency-type: direct:production dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent c53c0ab commit ae1a54e

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
# Initializes the CodeQL tools for scanning.
5858
- name: Initialize CodeQL
59-
uses: github/codeql-action/init@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3
59+
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3
6060
with:
6161
languages: ${{ matrix.language }}
6262
build-mode: none
@@ -72,6 +72,6 @@ jobs:
7272
pip install -e .
7373
7474
- name: Perform CodeQL Analysis
75-
uses: github/codeql-action/analyze@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3
75+
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3
7676
with:
7777
category: "/language:${{ matrix.language }}"

.github/workflows/dist.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
cd ..
5656
python -c "from pymongo_search_utils import create_vector_search_index"
5757
58-
- uses: actions/upload-artifact@v4
58+
- uses: actions/upload-artifact@v5
5959
with:
6060
name: "dist"
6161
path: ./dist/*.*
@@ -66,13 +66,13 @@ jobs:
6666
name: Download Dist
6767
steps:
6868
- name: Download all workflow run artifacts
69-
uses: actions/download-artifact@v5
69+
uses: actions/download-artifact@v6
7070
- name: Flatten directory
7171
working-directory: .
7272
run: |
7373
find . -mindepth 2 -type f -exec mv {} . \;
7474
find . -type d -empty -delete
75-
- uses: actions/upload-artifact@v4
75+
- uses: actions/upload-artifact@v5
7676
with:
7777
name: all-dist-${{ github.run_id }}
7878
path: "./*"

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
id-token: write
8585
steps:
8686
- name: Download all the dists
87-
uses: actions/download-artifact@v5
87+
uses: actions/download-artifact@v6
8888
with:
8989
name: all-dist-${{ github.run_id }}
9090
path: dist/

.github/workflows/test-python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
persist-credentials: false
2828
fetch-depth: 0
2929
- name: Install uv
30-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v5
30+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v5
3131
with:
3232
enable-cache: true
3333
python-version: ${{ matrix.python-version }}
@@ -49,7 +49,7 @@ jobs:
4949
persist-credentials: false
5050
fetch-depth: 0
5151
- name: Install uv
52-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v5
52+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v5
5353
with:
5454
enable-cache: true
5555
python-version: ${{ matrix.python-version }}
@@ -70,13 +70,13 @@ jobs:
7070
persist-credentials: false
7171
fetch-depth: 0
7272
- name: Install uv
73-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v5
73+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v5
7474
with:
7575
enable-cache: true
7676
python-version: ${{ env.MIN_PYTHON }}
7777
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
7878
- name: Install uv
79-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v5
79+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v5
8080
with:
8181
enable-cache: true
8282
python-version: ${{ env.MIN_PYTHON }}

.github/workflows/zizmor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
with:
1919
persist-credentials: false
2020
- name: Run zizmor
21-
uses: zizmorcore/zizmor-action@c323c83e3ab58baf4acbc7b6b39eef0e0cb14e4d
21+
uses: zizmorcore/zizmor-action@da5ac40c5419dcf7f21630fb2f95e725ae8fb9d5

0 commit comments

Comments
 (0)