Skip to content

Commit 6727d40

Browse files
[pre-commit.ci] pre-commit autoupdate (#186)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: S. Co1 <sco1.git@gmail.com>
1 parent 9f4dcad commit 6727d40

File tree

4 files changed

+328
-245
lines changed

4 files changed

+328
-245
lines changed

.github/workflows/lint_test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717

1818
- name: Set up Python
1919
uses: actions/setup-python@v6
@@ -42,7 +42,7 @@ jobs:
4242
fail-fast: false
4343

4444
steps:
45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v6
4646

4747
- name: Get Non-Hyphenated Python Version
4848
id: get-pyver
@@ -78,7 +78,7 @@ jobs:
7878
uv run tox -e ${{ steps.get-pyver.outputs.PYVER }}
7979
8080
- name: Cache coverage for ${{ matrix.python-version }}
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v6
8282
with:
8383
name: cov_py${{ matrix.python-version }}
8484
path: .coverage
@@ -90,15 +90,15 @@ jobs:
9090
needs: test
9191

9292
steps:
93-
- uses: actions/checkout@v5
93+
- uses: actions/checkout@v6
9494

9595
- name: Set up Python
9696
uses: actions/setup-python@v6
9797
with:
9898
python-version-file: "pyproject.toml"
9999

100100
- name: Pull coverage workflow artifacts
101-
uses: actions/download-artifact@v5
101+
uses: actions/download-artifact@v7
102102
with:
103103
path: cov_cache/
104104

@@ -116,7 +116,7 @@ jobs:
116116
coverage report --format=markdown >> $GITHUB_STEP_SUMMARY
117117
118118
- name: Publish cov HTML
119-
uses: actions/upload-artifact@v4
119+
uses: actions/upload-artifact@v6
120120
with:
121121
path: htmlcov/
122122
name: cov_report_html

.github/workflows/pypi_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
id-token: write
1717

1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
- name: Install uv
2222
uses: astral-sh/setup-uv@v7

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ ci:
44

55
repos:
66
- repo: https://github.com/psf/black-pre-commit-mirror
7-
rev: 25.9.0
7+
rev: 25.12.0
88
hooks:
99
- id: black
1010
- repo: https://github.com/pycqa/isort
11-
rev: 6.1.0
11+
rev: 7.0.0
1212
hooks:
1313
- id: isort
1414
name: isort
@@ -27,7 +27,7 @@ repos:
2727
- id: python-check-blanket-type-ignore
2828
exclude: "test_type_ignore.py"
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.14.0
30+
rev: v0.14.10
3131
hooks:
3232
- id: ruff-check
3333
- repo: local

0 commit comments

Comments
 (0)