Skip to content

Commit 38229e5

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] <support@github.com>
1 parent 46c7831 commit 38229e5

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
@@ -52,7 +52,7 @@ jobs:
5252
cd ..
5353
python -c "from flask_pymongo import PyMongo"
5454
55-
- uses: actions/upload-artifact@v4
55+
- uses: actions/upload-artifact@v5
5656
with:
5757
name: "dist"
5858
path: ./dist/*.*
@@ -63,13 +63,13 @@ jobs:
6363
name: Download Dist
6464
steps:
6565
- name: Download all workflow run artifacts
66-
uses: actions/download-artifact@v5
66+
uses: actions/download-artifact@v6
6767
- name: Flatten directory
6868
working-directory: .
6969
run: |
7070
find . -mindepth 2 -type f -exec mv {} . \;
7171
find . -type d -empty -delete
72-
- uses: actions/upload-artifact@v4
72+
- uses: actions/upload-artifact@v5
7373
with:
7474
name: all-dist-${{ github.run_id }}
7575
path: "./*"

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
id-token: write
7171
steps:
7272
- name: Download all the dists
73-
uses: actions/download-artifact@v5
73+
uses: actions/download-artifact@v6
7474
with:
7575
name: all-dist-${{ github.run_id }}
7676
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@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7
30+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
3131
with:
3232
enable-cache: true
3333
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 }}
@@ -86,13 +86,13 @@ jobs:
8686
persist-credentials: false
8787
fetch-depth: 0
8888
- name: Install uv
89-
uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7
89+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
9090
with:
9191
enable-cache: true
9292
python-version: ${{ env.MIN_PYTHON }}
9393
- uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
9494
- name: Install uv
95-
uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7
95+
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
9696
with:
9797
enable-cache: true
9898
python-version: ${{ env.MIN_PYTHON }}

0 commit comments

Comments
 (0)