From e566fdfd95f526d6c3ab2ca62444b44600913337 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 21:05:00 +0000 Subject: [PATCH] [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](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `jakebailey/pyright-action` from 2.3.3 to 3.0.2 - [Release notes](https://github.com/jakebailey/pyright-action/releases) - [Commits](https://github.com/jakebailey/pyright-action/compare/6cabc0f01c4994be48fd45cd9dbacdd6e1ee6e5e...8ec14b5cfe41f26e5f41686a31eb6012758217ef) --- 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] --- .github/workflows/publish-to-pypi.yaml | 8 ++++---- .github/workflows/pyright.yaml | 2 +- .github/workflows/pytest.yaml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish-to-pypi.yaml b/.github/workflows/publish-to-pypi.yaml index 6c60c19..16a1669 100644 --- a/.github/workflows/publish-to-pypi.yaml +++ b/.github/workflows/publish-to-pypi.yaml @@ -25,7 +25,7 @@ jobs: - name: Build a binary wheel and a source tarball run: python3 -m hatch build - name: Store the distribution packages - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: python-package-distributions path: dist/ @@ -45,7 +45,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: python-package-distributions path: dist/ @@ -66,7 +66,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: python-package-distributions path: dist/ @@ -110,7 +110,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: python-package-distributions path: dist/ diff --git a/.github/workflows/pyright.yaml b/.github/workflows/pyright.yaml index f42d531..fb99257 100644 --- a/.github/workflows/pyright.yaml +++ b/.github/workflows/pyright.yaml @@ -23,4 +23,4 @@ jobs: hatch env create dev - run: echo "$(hatch env find dev)/bin" >> $GITHUB_PATH - name: Run pyright - uses: jakebailey/pyright-action@6cabc0f01c4994be48fd45cd9dbacdd6e1ee6e5e + uses: jakebailey/pyright-action@8ec14b5cfe41f26e5f41686a31eb6012758217ef diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 91d31aa..f907968 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -37,7 +37,7 @@ jobs: env: COVERAGE_FILE: ".coverage.${{ matrix.os }}.${{ matrix.python-version }}" - name: Store coverage file - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: coverage-${{ matrix.os }}-${{ matrix.python-version }} path: .coverage.${{ matrix.os }}.${{ matrix.python-version }} @@ -52,7 +52,7 @@ jobs: contents: write steps: - uses: actions/checkout@v6 - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 id: download with: pattern: coverage-* @@ -68,7 +68,7 @@ jobs: GITHUB_TOKEN: ${{ github.token }} MERGE_COVERAGE_FILES: true - name: Store Pull Request comment to be posted - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true' with: name: python-coverage-comment-action