Skip to content

Commit 6375680

Browse files
[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/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python). Updates `py-cov-action/python-coverage-comment-action` from 3.37 to 3.38 - [Release notes](https://github.com/py-cov-action/python-coverage-comment-action/releases) - [Commits](py-cov-action/python-coverage-comment-action@0544a9c...91aaf3b) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `sigstore/gh-action-sigstore-python` from 3.0.1 to 3.1.0 - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](sigstore/gh-action-sigstore-python@f7ad0af...f832326) --- updated-dependencies: - dependency-name: py-cov-action/python-coverage-comment-action dependency-version: '3.38' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5d3c405 commit 6375680

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
actions: read
1818
steps:
1919
- name: Python Coverage Comment
20-
uses: py-cov-action/python-coverage-comment-action@0544a9c648672334d94ec5dd1add7410b4470ddc
20+
uses: py-cov-action/python-coverage-comment-action@91aaf3b39c7e2331c6bc77767ce017f5160c5f11
2121
with:
2222
GITHUB_TOKEN: ${{ github.token }}
2323
GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }}

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

Lines changed: 5 additions & 5 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@v4
28+
uses: actions/upload-artifact@v5
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@v5
48+
uses: actions/download-artifact@v6
4949
with:
5050
name: python-package-distributions
5151
path: dist/
@@ -66,12 +66,12 @@ jobs:
6666

6767
steps:
6868
- name: Download all the dists
69-
uses: actions/download-artifact@v5
69+
uses: actions/download-artifact@v6
7070
with:
7171
name: python-package-distributions
7272
path: dist/
7373
- name: Sign the dists with Sigstore
74-
uses: sigstore/gh-action-sigstore-python@f7ad0af51a5648d09a20d00370f0a91c3bdf8f84 #v3.0.1
74+
uses: sigstore/gh-action-sigstore-python@f832326173235dcb00dd5d92cd3f353de3188e6c #v3.1.0
7575
with:
7676
inputs: >-
7777
./dist/*.tar.gz
@@ -110,7 +110,7 @@ jobs:
110110

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

.github/workflows/pytest.yaml

Lines changed: 4 additions & 4 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@v4
40+
uses: actions/upload-artifact@v5
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@v5
55-
- uses: actions/download-artifact@v5
55+
- uses: actions/download-artifact@v6
5656
id: download
5757
with:
5858
pattern: coverage-*
@@ -63,12 +63,12 @@ jobs:
6363
echo "[run]" >> .coveragerc
6464
echo "relative_files = true" >> .coveragerc
6565
- name: Python Coverage Comment
66-
uses: py-cov-action/python-coverage-comment-action@0544a9c648672334d94ec5dd1add7410b4470ddc
66+
uses: py-cov-action/python-coverage-comment-action@91aaf3b39c7e2331c6bc77767ce017f5160c5f11
6767
with:
6868
GITHUB_TOKEN: ${{ github.token }}
6969
MERGE_COVERAGE_FILES: true
7070
- name: Store Pull Request comment to be posted
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v5
7272
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
7373
with:
7474
name: python-coverage-comment-action

0 commit comments

Comments
 (0)