Skip to content

Commit 8865522

Browse files
Updated files with 'repo_helper'.
1 parent 940607e commit 8865522

9 files changed

Lines changed: 29 additions & 17 deletions

File tree

.github/workflows/docs_test_action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout 🛎️
19-
uses: "actions/checkout@v4"
19+
uses: "actions/checkout@v6"
2020

2121
- name: Install and Build 🔧
2222
uses: sphinx-toolbox/sphinx-action@sphinx-3.3.1-py39

.github/workflows/flake8.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: Checkout 🛎️
22-
uses: "actions/checkout@v4"
22+
uses: "actions/checkout@v6"
2323

2424
- name: Check for changed files
25-
uses: dorny/paths-filter@v2
25+
uses: dorny/paths-filter@v4
2626
id: changes
2727
with:
2828
list-files: "json"
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: Setup Python 🐍
3434
if: steps.changes.outputs.code == 'true'
35-
uses: "actions/setup-python@v5"
35+
uses: "actions/setup-python@v6"
3636
with:
3737
python-version: "3.9"
3838

.github/workflows/mypy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424

2525
steps:
2626
- name: Checkout 🛎️
27-
uses: "actions/checkout@v4"
27+
uses: "actions/checkout@v6"
2828

2929
- name: Check for changed files
30-
uses: dorny/paths-filter@v2
30+
uses: dorny/paths-filter@v4
3131
id: changes
3232
with:
3333
list-files: "json"
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Setup Python 🐍
3939
if: steps.changes.outputs.code == 'true'
40-
uses: "actions/setup-python@v5"
40+
uses: "actions/setup-python@v6"
4141
with:
4242
python-version: "3.9"
4343

.github/workflows/python_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030

3131
steps:
3232
- name: Checkout 🛎️
33-
uses: "actions/checkout@v4"
33+
uses: "actions/checkout@v6"
3434

3535
- name: Check for changed files
3636
if: startsWith(github.ref, 'refs/tags/') != true
37-
uses: dorny/paths-filter@v2
37+
uses: dorny/paths-filter@v4
3838
id: changes
3939
with:
4040
list-files: "json"
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup Python 🐍
4646
id: setup-python
4747
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
48-
uses: "actions/setup-python@v5"
48+
uses: "actions/setup-python@v6"
4949
with:
5050
python-version: "${{ matrix.config.python-version }}"
5151

.github/workflows/python_ci_linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131

3232
steps:
3333
- name: Checkout 🛎️
34-
uses: "actions/checkout@v4"
34+
uses: "actions/checkout@v6"
3535

3636
- name: Check for changed files
3737
if: startsWith(github.ref, 'refs/tags/') != true
38-
uses: dorny/paths-filter@v2
38+
uses: dorny/paths-filter@v4
3939
id: changes
4040
with:
4141
list-files: "json"
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup Python 🐍
4747
id: setup-python
4848
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
49-
uses: "actions/setup-python@v5"
49+
uses: "actions/setup-python@v6"
5050
with:
5151
python-version: "${{ matrix.config.python-version }}"
5252

.github/workflows/python_ci_macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030

3131
steps:
3232
- name: Checkout 🛎️
33-
uses: "actions/checkout@v4"
33+
uses: "actions/checkout@v6"
3434

3535
- name: Check for changed files
3636
if: startsWith(github.ref, 'refs/tags/') != true
37-
uses: dorny/paths-filter@v2
37+
uses: dorny/paths-filter@v4
3838
id: changes
3939
with:
4040
list-files: "json"
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup Python 🐍
4646
id: setup-python
4747
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
48-
uses: "actions/setup-python@v5"
48+
uses: "actions/setup-python@v6"
4949
with:
5050
python-version: "${{ matrix.config.python-version }}"
5151

.pre-commit-config.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ exclude: ^$
55

66
ci:
77
autoupdate_schedule: quarterly
8+
skip: [taplo-lint]
89

910
repos:
1011
- repo: https://github.com/repo-helper/pyproject-parser
@@ -21,7 +22,6 @@ repos:
2122
- id: check-case-conflict
2223
- id: check-executables-have-shebangs
2324
- id: check-json
24-
- id: check-toml
2525
- id: check-yaml
2626
- id: check-merge-conflict
2727
- id: check-symlinks
@@ -31,6 +31,12 @@ repos:
3131
- id: mixed-line-ending
3232
- id: end-of-file-fixer
3333

34+
- repo: https://github.com/domdfcoding/taplo-pre-commit
35+
rev: v0.10.0
36+
hooks:
37+
- id: taplo-lint
38+
args: []
39+
3440
- repo: https://github.com/domdfcoding/pre-commit-hooks
3541
rev: v0.7.0
3642
hooks:

justfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,8 @@ bare-ignore:
2323

2424
lint: unused-imports incomplete-defs bare-ignore
2525
tox -n qa
26+
27+
uncomm:
28+
git status -uall --ignored
29+
30+
# Custom commands can be added below this comment

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ setenv =
3737
PYTHONDEVMODE=1
3838
PIP_DISABLE_PIP_VERSION_CHECK=1
3939
SETUPTOOLS_USE_DISTUTILS=stdlib
40+
download = True
4041
deps = importcheck>=0.1.0
4142
commands =
4243
python --version

0 commit comments

Comments
 (0)