Skip to content

Commit b00a777

Browse files
Updated files with 'repo_helper'. (#109)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent ad69a0e commit b00a777

File tree

8 files changed

+31
-31
lines changed

8 files changed

+31
-31
lines changed

.github/workflows/conda_ci.yml

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

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

2424
- name: Setup Python 🐍
25-
uses: "actions/setup-python@v4"
25+
uses: "actions/setup-python@v5"
2626
with:
2727
python-version: "3.8"
2828

.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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.2,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.3,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
2626

2727
strategy:
2828
fail-fast: False
@@ -35,7 +35,7 @@ jobs:
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3737
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
38-
- {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True}
38+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev,build", experimental: True}
3939
- {python-version: "pypy-3.6", testenvs: "pypy36", experimental: False}
4040
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4141
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
@@ -44,7 +44,7 @@ jobs:
4444

4545
steps:
4646
- name: Checkout 🛎️
47-
uses: "actions/checkout@v3"
47+
uses: "actions/checkout@v4"
4848

4949
- name: Check for changed files
5050
if: startsWith(github.ref, 'refs/tags/') != true
@@ -59,7 +59,7 @@ jobs:
5959
- name: Setup Python 🐍
6060
id: setup-python
6161
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
62-
uses: "actions/setup-python@v4"
62+
uses: "actions/setup-python@v5"
6363
with:
6464
python-version: "${{ matrix.config.python-version }}"
6565

.github/workflows/python_ci_linux.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.2,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.3,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
2727

2828
strategy:
2929
fail-fast: False
@@ -36,7 +36,7 @@ jobs:
3636
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3737
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3838
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
39-
- {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True}
39+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev,build", experimental: True}
4040
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
4141
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4242
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Checkout 🛎️
48-
uses: "actions/checkout@v3"
48+
uses: "actions/checkout@v4"
4949

5050
- name: Check for changed files
5151
if: startsWith(github.ref, 'refs/tags/') != true
@@ -60,7 +60,7 @@ jobs:
6060
- name: Setup Python 🐍
6161
id: setup-python
6262
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
63-
uses: "actions/setup-python@v4"
63+
uses: "actions/setup-python@v5"
6464
with:
6565
python-version: "${{ matrix.config.python-version }}"
6666

@@ -90,10 +90,10 @@ jobs:
9090
runs-on: "ubuntu-20.04"
9191
steps:
9292
- name: Checkout 🛎️
93-
uses: "actions/checkout@v3"
93+
uses: "actions/checkout@v4"
9494

9595
- name: Setup Python 🐍
96-
uses: "actions/setup-python@v4"
96+
uses: "actions/setup-python@v5"
9797
with:
9898
python-version: 3.8
9999

@@ -139,11 +139,11 @@ jobs:
139139
runs-on: "ubuntu-20.04"
140140
steps:
141141
- name: Checkout 🛎️
142-
uses: "actions/checkout@v3"
142+
uses: "actions/checkout@v4"
143143
if: startsWith(github.ref, 'refs/tags/')
144144

145145
- name: Setup Python 🐍
146-
uses: "actions/setup-python@v4"
146+
uses: "actions/setup-python@v5"
147147
if: startsWith(github.ref, 'refs/tags/')
148148
with:
149149
python-version: 3.8
@@ -184,10 +184,10 @@ jobs:
184184
if: startsWith(github.ref, 'refs/tags/') || (startsWith(github.event.head_commit.message, 'Bump version') != true)
185185
steps:
186186
- name: Checkout 🛎️
187-
uses: "actions/checkout@v3"
187+
uses: "actions/checkout@v4"
188188

189189
- name: Setup Python 🐍
190-
uses: "actions/setup-python@v4"
190+
uses: "actions/setup-python@v5"
191191
with:
192192
python-version: 3.8
193193

.github/workflows/python_ci_macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-latest"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.2,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.3,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
2626

2727
strategy:
2828
fail-fast: False
@@ -35,15 +35,15 @@ jobs:
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3737
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
38-
- {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True}
38+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev,build", experimental: True}
3939
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4040
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4141
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
4242
- {python-version: "pypy-3.10", testenvs: "pypy310,build", experimental: True}
4343

4444
steps:
4545
- name: Checkout 🛎️
46-
uses: "actions/checkout@v3"
46+
uses: "actions/checkout@v4"
4747

4848
- name: Check for changed files
4949
if: startsWith(github.ref, 'refs/tags/') != true
@@ -58,7 +58,7 @@ jobs:
5858
- name: Setup Python 🐍
5959
id: setup-python
6060
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
61-
uses: "actions/setup-python@v4"
61+
uses: "actions/setup-python@v5"
6262
with:
6363
python-version: "${{ matrix.config.python-version }}"
6464

.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: ^domdf_python_tools/.*\.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)