From c0d38cbb384eb131ee91919f6d463d2ea582e762 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:16:57 +0000 Subject: [PATCH] [actions] (deps): Bump the dev-dependencies group across 1 directory with 2 updates Bumps the dev-dependencies group with 2 updates in the / directory: [py-cov-action/python-coverage-comment-action](https://github.com/py-cov-action/python-coverage-comment-action) and [actions/download-artifact](https://github.com/actions/download-artifact). 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/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) --- 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/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/coverage.yaml | 2 +- .github/workflows/publish-to-pypi.yaml | 6 +++--- .github/workflows/pytest.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 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..01b08e9 100644 --- a/.github/workflows/publish-to-pypi.yaml +++ b/.github/workflows/publish-to-pypi.yaml @@ -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/pytest.yaml b/.github/workflows/pytest.yaml index fee157d..3ce6b1d 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -52,7 +52,7 @@ jobs: contents: write steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 + - 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