Skip to content

Commit 78856a1

Browse files
Bump the actions group with 3 updates (#147)
Bumps the 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: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6bc5f55 commit 78856a1

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
with:
5858
python-version: "3.x"
5959
- name: Setup uv
60-
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
60+
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
6161
with:
6262
python-version: ${{ steps.python-setup.outputs.python-version }}
6363
enable-cache: true

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Setup uv
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: ${{ matrix.python-version }}
3131
enable-cache: true

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build distributions
2323
run: pipx run build
2424
- name: Upload distributions
25-
uses: actions/upload-artifact@v6
25+
uses: actions/upload-artifact@v7
2626
with:
2727
name: dist
2828
path: dist/*
@@ -35,7 +35,7 @@ jobs:
3535
id-token: write
3636
steps:
3737
- name: Download distributions
38-
uses: actions/download-artifact@v7
38+
uses: actions/download-artifact@v8
3939
with:
4040
name: dist
4141
path: dist

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
python-version: ${{ matrix.python-version }}
5757
- name: Setup UV
5858
id: uv-setup
59-
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
59+
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
6060
with:
6161
python-version: ${{ steps.python-setup.outputs.python-version }}
6262
enable-cache: true
@@ -79,7 +79,7 @@ jobs:
7979
path: ${{ env.SPHINX_IMMATERIAL_EXTERNAL_RESOURCE_CACHE_DIR }}
8080
key: ${{ runner.os }}-${{ matrix.python-version }}-test-docs-cache-${{ github.run_id }}
8181
- name: Upload coverage data
82-
uses: actions/upload-artifact@v6
82+
uses: actions/upload-artifact@v7
8383
with:
8484
name: coverage-data-${{ runner.os }}-py${{ matrix.python-version }}
8585
path: .coverage*
@@ -93,7 +93,7 @@ jobs:
9393
with:
9494
persist-credentials: false
9595
- name: Download all artifacts
96-
uses: actions/download-artifact@v7
96+
uses: actions/download-artifact@v8
9797
with:
9898
pattern: coverage-data-*
9999
merge-multiple: true
@@ -104,14 +104,14 @@ jobs:
104104
python-version: 3.x
105105
- name: Setup UV
106106
id: uv-setup
107-
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
107+
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
108108
with:
109109
python-version: ${{ steps.python-setup.outputs.python-version }}
110110
enable-cache: true
111111
- name: Create coverage report
112112
run: uvx nox -s coverage
113113
- name: Upload comprehensive coverage HTML report
114-
uses: actions/upload-artifact@v6
114+
uses: actions/upload-artifact@v7
115115
with:
116116
name: coverage-report
117117
path: htmlcov/

0 commit comments

Comments
 (0)