From 468ebe7dc6c1513b82e0dcc06b34ddb804737d26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 Aug 2025 21:40:38 +0000 Subject: [PATCH] [actions] (deps): Bump the dev-dependencies group across 1 directory with 4 updates Bumps the dev-dependencies group with 4 updates in the / directory: [py-cov-action/python-coverage-comment-action](https://github.com/py-cov-action/python-coverage-comment-action), [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact) and [jakebailey/pyright-action](https://github.com/jakebailey/pyright-action). Updates `py-cov-action/python-coverage-comment-action` from 3.34 to 3.35 - [Release notes](https://github.com/py-cov-action/python-coverage-comment-action/releases) - [Commits](https://github.com/py-cov-action/python-coverage-comment-action/compare/970a227e0c16ef4589a99a9970ab0ceb8c53059a...91910686861e4e1d8282a267a896eb39d46240fb) Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) Updates `jakebailey/pyright-action` from 2.3.2 to 2.3.3 - [Release notes](https://github.com/jakebailey/pyright-action/releases) - [Commits](https://github.com/jakebailey/pyright-action/compare/b5d50e5cde6547546a5c4ac92e416a8c2c1a1dfe...6cabc0f01c4994be48fd45cd9dbacdd6e1ee6e5e) --- updated-dependencies: - dependency-name: py-cov-action/python-coverage-comment-action dependency-version: '3.35' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: jakebailey/pyright-action dependency-version: 2.3.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/coverage.yaml | 2 +- .github/workflows/publish-to-pypi.yaml | 8 ++++---- .github/workflows/pyright.yaml | 4 ++-- .github/workflows/pytest.yaml | 8 ++++---- .github/workflows/ruff.yaml | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index 92cee03..9d2be35 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -17,7 +17,7 @@ jobs: actions: read steps: - name: Python Coverage Comment - uses: py-cov-action/python-coverage-comment-action@970a227e0c16ef4589a99a9970ab0ceb8c53059a + uses: py-cov-action/python-coverage-comment-action@91910686861e4e1d8282a267a896eb39d46240fb with: GITHUB_TOKEN: ${{ github.token }} GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }} diff --git a/.github/workflows/publish-to-pypi.yaml b/.github/workflows/publish-to-pypi.yaml index 2fe8962..fcc609f 100644 --- a/.github/workflows/publish-to-pypi.yaml +++ b/.github/workflows/publish-to-pypi.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: @@ -45,7 +45,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: python-package-distributions path: dist/ @@ -66,7 +66,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: python-package-distributions path: dist/ @@ -110,7 +110,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: python-package-distributions path: dist/ diff --git a/.github/workflows/pyright.yaml b/.github/workflows/pyright.yaml index 166e4c0..0dee691 100644 --- a/.github/workflows/pyright.yaml +++ b/.github/workflows/pyright.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: @@ -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@b5d50e5cde6547546a5c4ac92e416a8c2c1a1dfe + uses: jakebailey/pyright-action@6cabc0f01c4994be48fd45cd9dbacdd6e1ee6e5e diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index fee157d..d371550 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -18,7 +18,7 @@ jobs: python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: @@ -51,8 +51,8 @@ jobs: pull-requests: write contents: write steps: - - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 + - uses: actions/checkout@v5 + - uses: actions/download-artifact@v5 id: download with: pattern: coverage-* @@ -63,7 +63,7 @@ jobs: echo "[run]" >> .coveragerc echo "relative_files = true" >> .coveragerc - name: Python Coverage Comment - uses: py-cov-action/python-coverage-comment-action@970a227e0c16ef4589a99a9970ab0ceb8c53059a + uses: py-cov-action/python-coverage-comment-action@91910686861e4e1d8282a267a896eb39d46240fb with: GITHUB_TOKEN: ${{ github.token }} MERGE_COVERAGE_FILES: true diff --git a/.github/workflows/ruff.yaml b/.github/workflows/ruff.yaml index 0c27096..a6c06c4 100644 --- a/.github/workflows/ruff.yaml +++ b/.github/workflows/ruff.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: