Skip to content

Commit acc5fd6

Browse files
committed
Tidy up tooling
1 parent 1437efd commit acc5fd6

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717

1818
# keep in sync with .pre-commit-config.yaml
19-
- run: python -Im pip install --user ruff==0.5.7
19+
- run: python -Im pip install --user ruff==0.7.0
2020

2121
- name: Run ruff
2222
run: ruff check --output-format=github wagtail_footnotes

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
with:
6666
name: coverage-data-${{ matrix.python }}
6767
path: .coverage.*
68+
include-hidden-files: true
6869
if-no-files-found: ignore
6970
retention-days: 1
7071

.pre-commit-config.yaml

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

77
repos:
88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: v4.6.0
9+
rev: v5.0.0
1010
hooks:
1111
- id: check-added-large-files
1212
- id: check-case-conflict
@@ -19,13 +19,13 @@ repos:
1919
- id: trailing-whitespace
2020
- repo: https://github.com/astral-sh/ruff-pre-commit
2121
# Keep in sync with .github/workflows/ruff.yml
22-
rev: 'v0.5.7'
22+
rev: 'v0.7.0'
2323
hooks:
2424
- id: ruff
2525
args: [--fix, --exit-non-zero-on-fix]
2626
- id: ruff-format
2727
- repo: https://github.com/jackdewinter/pymarkdown
28-
rev: v0.9.18
28+
rev: v0.9.24
2929
hooks:
3030
- id: pymarkdown
3131
args:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dependencies = [
4242
testing = [
4343
"pre-commit>=3.3.0,<4",
4444
"tox>=4.6.4,<5",
45-
"ruff==0.3.7",
45+
"ruff==0.7.0",
4646
"coverage[toml]>=7.2,<8.0",
4747
"wagtail-modeladmin>=2.0.0",
4848
]

0 commit comments

Comments
 (0)