Skip to content

Commit 199d113

Browse files
[actions] (deps): Bump the dev-dependencies group across 1 directory with 5 updates
Bumps the dev-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [py-cov-action/python-coverage-comment-action](https://github.com/py-cov-action/python-coverage-comment-action) | `3.37` | `3.39` | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) | `3.0.1` | `3.1.0` | Updates `py-cov-action/python-coverage-comment-action` from 3.37 to 3.39 - [Release notes](https://github.com/py-cov-action/python-coverage-comment-action/releases) - [Commits](py-cov-action/python-coverage-comment-action@0544a9c...e623398) Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) 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.39' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major 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 742a6aa commit 199d113

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
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@e623398c19eb3853a5572d4a516e10b15b5cefbc
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- name: Set up Python
1616
uses: actions/setup-python@v6
1717
with:
@@ -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/pyright.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Set up Python
1717
uses: actions/setup-python@v6
1818
with:

.github/workflows/pytest.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1919

2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- name: Set up Python
2323
uses: actions/setup-python@v6
2424
with:
@@ -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 }}
@@ -51,8 +51,8 @@ jobs:
5151
pull-requests: write
5252
contents: write
5353
steps:
54-
- uses: actions/checkout@v5
55-
- uses: actions/download-artifact@v5
54+
- uses: actions/checkout@v6
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@e623398c19eb3853a5572d4a516e10b15b5cefbc
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

.github/workflows/ruff.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Set up Python
1717
uses: actions/setup-python@v6
1818
with:

0 commit comments

Comments
 (0)