Skip to content

Commit 1574537

Browse files
⬆️ bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `astral-sh/setup-uv` from 7.3.0 to 7.3.1 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@eac588a...5a095e7) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: 7.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9eba61d commit 1574537

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

β€Ž.github/workflows/build-package.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2424

2525
- name: 🐍 Install uv and set Python version ${{ inputs.python-version }}
26-
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
26+
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
2727
with:
2828
python-version: ${{ inputs.python-version }}
2929
activate-environment: true
@@ -50,7 +50,7 @@ jobs:
5050
twine check --strict dist/*
5151
5252
- name: πŸ“€ Upload distribution artifacts
53-
uses: actions/upload-artifact@v6
53+
uses: actions/upload-artifact@v7
5454
with:
5555
name: dist
5656
path: dist/

β€Ž.github/workflows/ci-build-docs.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2626

2727
- name: 🐍 Install uv and set Python
28-
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
28+
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
2929
with:
3030
python-version: "3.10"
3131
activate-environment: true

β€Ž.github/workflows/ci-tests.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3737

3838
- name: 🐍 Install uv and set Python version ${{ matrix.python-version }}
39-
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
39+
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
activate-environment: true

β€Ž.github/workflows/publish-docs.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
fetch-depth: 0
3232

3333
- name: 🐍 Install uv and set Python
34-
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
34+
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
3535
with:
3636
python-version: "3.10"
3737
activate-environment: true

β€Ž.github/workflows/publish-pre-release.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
contents: read # Required for checkout
3535
steps:
3636
- name: πŸ“₯ Download distribution artifacts
37-
uses: actions/download-artifact@v7
37+
uses: actions/download-artifact@v8
3838
with:
3939
name: dist
4040
path: dist/

β€Ž.github/workflows/publish-release.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
contents: write # Required for checkout and upload assets
3232
steps:
3333
- name: πŸ“₯ Download distribution artifacts
34-
uses: actions/download-artifact@v7
34+
uses: actions/download-artifact@v8
3535
with:
3636
name: dist
3737
path: dist/

β€Ž.github/workflows/publish-testpypi.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
contents: read # Required for checkout
3030
steps:
3131
- name: πŸ“₯ Download distribution artifacts
32-
uses: actions/download-artifact@v7
32+
uses: actions/download-artifact@v8
3333
with:
3434
name: dist
3535
path: dist/

0 commit comments

Comments
Β (0)