Skip to content

Commit 1f2bbf3

Browse files
Bump the actions group across 1 directory with 4 updates (#11)
Bumps the actions group with 4 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-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 `astral-sh/setup-uv` from 7.1.0 to 7.1.2 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@3259c62...8585678) Updates `zizmorcore/zizmor-action` from da5ac40c5419dcf7f21630fb2f95e725ae8fb9d5 to 1aba86d8e1245be7a9ca003d46fcc85a76e6aa61 - [Release notes](https://github.com/zizmorcore/zizmor-action/releases) - [Commits](zizmorcore/zizmor-action@da5ac40...1aba86d) --- 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: astral-sh/setup-uv dependency-version: 7.1.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: zizmorcore/zizmor-action dependency-version: 1aba86d8e1245be7a9ca003d46fcc85a76e6aa61 dependency-type: direct:production dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0558bc9 commit 1f2bbf3

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/dist-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
cd ..
5555
python -c "import django_mongodb_extensions"
5656
57-
- uses: actions/upload-artifact@v4
57+
- uses: actions/upload-artifact@v5
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@v5
70+
uses: actions/download-artifact@v6
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@v4
76+
- uses: actions/upload-artifact@v5
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@v5
75+
uses: actions/download-artifact@v6
7676
with:
7777
name: all-dist-${{ github.run_id }}
7878
path: dist/

.github/workflows/test-python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
persist-credentials: false
3131
fetch-depth: 0
3232
- name: Install uv
33-
uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7
33+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
3434
with:
3535
enable-cache: true
3636
python-version: ${{ matrix.python-version }}
@@ -50,7 +50,7 @@ jobs:
5050
persist-credentials: false
5151
fetch-depth: 0
5252
- name: Install uv
53-
uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7
53+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
5454
with:
5555
enable-cache: true
5656
python-version: ${{ matrix.python-version }}
@@ -71,13 +71,13 @@ jobs:
7171
persist-credentials: false
7272
fetch-depth: 0
7373
- name: Install uv
74-
uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7
74+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # 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@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7
80+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
8181
with:
8282
enable-cache: true
8383
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@da5ac40c5419dcf7f21630fb2f95e725ae8fb9d5
21+
uses: zizmorcore/zizmor-action@1aba86d8e1245be7a9ca003d46fcc85a76e6aa61

0 commit comments

Comments
 (0)