Skip to content

Commit 8149c4d

Browse files
Updated files with 'repo_helper'.
1 parent cb9fa7b commit 8149c4d

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

.github/workflows/docs_test_action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout 🛎️
20-
uses: "actions/checkout@v3"
20+
uses: "actions/checkout@v4"
2121

2222
- name: Check for changed files
2323
uses: dorny/paths-filter@v2

.github/workflows/flake8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout 🛎️
23-
uses: "actions/checkout@v3"
23+
uses: "actions/checkout@v4"
2424

2525
- name: Check for changed files
2626
uses: dorny/paths-filter@v2
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Setup Python 🐍
3535
if: steps.changes.outputs.code == 'true'
36-
uses: "actions/setup-python@v4"
36+
uses: "actions/setup-python@v5"
3737
with:
3838
python-version: "3.8"
3939

.github/workflows/mypy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout 🛎️
28-
uses: "actions/checkout@v3"
28+
uses: "actions/checkout@v4"
2929

3030
- name: Check for changed files
3131
uses: dorny/paths-filter@v2
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Setup Python 🐍
4040
if: steps.changes.outputs.code == 'true'
41-
uses: "actions/setup-python@v4"
41+
uses: "actions/setup-python@v5"
4242
with:
4343
python-version: "3.8"
4444

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout 🛎️
38-
uses: "actions/checkout@v3"
38+
uses: "actions/checkout@v4"
3939

4040
- name: Check for changed files
4141
if: startsWith(github.ref, 'refs/tags/') != true
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup Python 🐍
5151
id: setup-python
5252
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
53-
uses: "actions/setup-python@v4"
53+
uses: "actions/setup-python@v5"
5454
with:
5555
python-version: "${{ matrix.config.python-version }}"
5656

.github/workflows/python_ci_linux.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout 🛎️
39-
uses: "actions/checkout@v3"
39+
uses: "actions/checkout@v4"
4040

4141
- name: Check for changed files
4242
if: startsWith(github.ref, 'refs/tags/') != true
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Python 🐍
5252
id: setup-python
5353
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
54-
uses: "actions/setup-python@v4"
54+
uses: "actions/setup-python@v5"
5555
with:
5656
python-version: "${{ matrix.config.python-version }}"
5757

@@ -81,10 +81,10 @@ jobs:
8181
runs-on: "ubuntu-20.04"
8282
steps:
8383
- name: Checkout 🛎️
84-
uses: "actions/checkout@v3"
84+
uses: "actions/checkout@v4"
8585

8686
- name: Setup Python 🐍
87-
uses: "actions/setup-python@v4"
87+
uses: "actions/setup-python@v5"
8888
with:
8989
python-version: 3.8
9090

@@ -130,11 +130,11 @@ jobs:
130130
runs-on: "ubuntu-20.04"
131131
steps:
132132
- name: Checkout 🛎️
133-
uses: "actions/checkout@v3"
133+
uses: "actions/checkout@v4"
134134
if: startsWith(github.ref, 'refs/tags/')
135135

136136
- name: Setup Python 🐍
137-
uses: "actions/setup-python@v4"
137+
uses: "actions/setup-python@v5"
138138
if: startsWith(github.ref, 'refs/tags/')
139139
with:
140140
python-version: 3.8

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout 🛎️
38-
uses: "actions/checkout@v3"
38+
uses: "actions/checkout@v4"
3939

4040
- name: Check for changed files
4141
if: startsWith(github.ref, 'refs/tags/') != true
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup Python 🐍
5151
id: setup-python
5252
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
53-
uses: "actions/setup-python@v4"
53+
uses: "actions/setup-python@v5"
5454
with:
5555
python-version: "${{ matrix.config.python-version }}"
5656

.pre-commit-config.yaml

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

99
repos:
1010
- repo: https://github.com/repo-helper/pyproject-parser
11-
rev: v0.9.0
11+
rev: v0.9.1
1212
hooks:
1313
- id: reformat-pyproject
1414

@@ -43,13 +43,13 @@ repos:
4343
- id: bind-requirements
4444

4545
- repo: https://github.com/domdfcoding/flake8-dunder-all
46-
rev: v0.3.0
46+
rev: v0.3.1
4747
hooks:
4848
- id: ensure-dunder-all
4949
files: ^tox_recreate_hook/.*\.py$
5050

5151
- repo: https://github.com/domdfcoding/flake2lint
52-
rev: v0.4.2
52+
rev: v0.4.3
5353
hooks:
5454
- id: flake2lint
5555

@@ -76,18 +76,18 @@ repos:
7676
- id: forbid-crlf
7777

7878
- repo: https://github.com/python-formate/snippet-fmt
79-
rev: v0.1.4
79+
rev: v0.1.5
8080
hooks:
8181
- id: snippet-fmt
8282

8383
- repo: https://github.com/python-formate/formate
84-
rev: v0.5.0
84+
rev: v0.7.0
8585
hooks:
8686
- id: formate
8787
exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$
8888

8989
- repo: https://github.com/domdfcoding/dep_checker
90-
rev: v0.7.1
90+
rev: v0.8.0
9191
hooks:
9292
- id: dep_checker
9393
args:

0 commit comments

Comments
 (0)