Skip to content

Commit e566fdf

Browse files
[actions] (deps): Bump the dev-dependencies group across 1 directory with 3 updates
Bumps the dev-dependencies group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [jakebailey/pyright-action](https://github.com/jakebailey/pyright-action). 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) Updates `jakebailey/pyright-action` from 2.3.3 to 3.0.2 - [Release notes](https://github.com/jakebailey/pyright-action/releases) - [Commits](jakebailey/pyright-action@6cabc0f...8ec14b5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: jakebailey/pyright-action dependency-version: 3.0.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 235e235 commit e566fdf

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/publish-to-pypi.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build a binary wheel and a source tarball
2626
run: python3 -m hatch build
2727
- name: Store the distribution packages
28-
uses: actions/upload-artifact@v6
28+
uses: actions/upload-artifact@v7
2929
with:
3030
name: python-package-distributions
3131
path: dist/
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Download all the dists
48-
uses: actions/download-artifact@v7
48+
uses: actions/download-artifact@v8
4949
with:
5050
name: python-package-distributions
5151
path: dist/
@@ -66,7 +66,7 @@ jobs:
6666

6767
steps:
6868
- name: Download all the dists
69-
uses: actions/download-artifact@v7
69+
uses: actions/download-artifact@v8
7070
with:
7171
name: python-package-distributions
7272
path: dist/
@@ -110,7 +110,7 @@ jobs:
110110

111111
steps:
112112
- name: Download all the dists
113-
uses: actions/download-artifact@v7
113+
uses: actions/download-artifact@v8
114114
with:
115115
name: python-package-distributions
116116
path: dist/

.github/workflows/pyright.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
hatch env create dev
2424
- run: echo "$(hatch env find dev)/bin" >> $GITHUB_PATH
2525
- name: Run pyright
26-
uses: jakebailey/pyright-action@6cabc0f01c4994be48fd45cd9dbacdd6e1ee6e5e
26+
uses: jakebailey/pyright-action@8ec14b5cfe41f26e5f41686a31eb6012758217ef

.github/workflows/pytest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
env:
3838
COVERAGE_FILE: ".coverage.${{ matrix.os }}.${{ matrix.python-version }}"
3939
- name: Store coverage file
40-
uses: actions/upload-artifact@v6
40+
uses: actions/upload-artifact@v7
4141
with:
4242
name: coverage-${{ matrix.os }}-${{ matrix.python-version }}
4343
path: .coverage.${{ matrix.os }}.${{ matrix.python-version }}
@@ -52,7 +52,7 @@ jobs:
5252
contents: write
5353
steps:
5454
- uses: actions/checkout@v6
55-
- uses: actions/download-artifact@v7
55+
- uses: actions/download-artifact@v8
5656
id: download
5757
with:
5858
pattern: coverage-*
@@ -68,7 +68,7 @@ jobs:
6868
GITHUB_TOKEN: ${{ github.token }}
6969
MERGE_COVERAGE_FILES: true
7070
- name: Store Pull Request comment to be posted
71-
uses: actions/upload-artifact@v6
71+
uses: actions/upload-artifact@v7
7272
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
7373
with:
7474
name: python-coverage-comment-action

0 commit comments

Comments
 (0)