Skip to content

Commit ba02679

Browse files
Bump the actions group with 3 updates
Bumps the actions group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). 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) --- 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 ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f83fc93 commit ba02679

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
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 }}

0 commit comments

Comments
 (0)