Skip to content

Commit e1e787b

Browse files
committed
⬆️ Update pre-commit hooks and GitHub actions
1 parent cc47820 commit e1e787b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
name: Build docs and check links
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- uses: pandoc/actions/setup@v1
1515
- uses: ts-graphviz/setup-graphviz@v2
16-
- uses: actions/setup-python@v5
16+
- uses: actions/setup-python@v6
1717
with:
1818
# Keep in sync with .readthedocs.yaml
1919
python-version-file: .python-version

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
pre-commit:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/setup-python@v5
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-python@v6
1414
- uses: actions/cache@v4
1515
with:
1616
path: ~/.cache/pre-commit

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ci:
66

77
repos:
88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: v5.0.0
9+
rev: v6.0.0
1010
hooks:
1111
- id: trailing-whitespace
1212
- id: end-of-file-fixer
@@ -24,18 +24,18 @@ repos:
2424
- id: sphinx-lint
2525
types: [rst]
2626
- repo: https://github.com/pycqa/isort
27-
rev: 6.0.1
27+
rev: 7.0.0
2828
hooks:
2929
- id: isort
3030
additional_dependencies: ["toml"]
3131
entry: isort --profile=black
3232
name: isort (python)
3333
- repo: https://github.com/psf/black
34-
rev: 25.1.0
34+
rev: 25.9.0
3535
hooks:
3636
- id: black
3737
- repo: https://github.com/adamchainz/blacken-docs
38-
rev: "1.19.1"
38+
rev: "1.20.0"
3939
hooks:
4040
- id: blacken-docs
4141
args: [--line-length=79]

0 commit comments

Comments
 (0)