18
18
runs-on : ubuntu-latest
19
19
name : Lint - Type consistency (mypy)
20
20
steps :
21
- - uses : actions/checkout@v3
21
+ - uses : actions/checkout@v4
22
22
with :
23
23
persist-credentials : false
24
24
- uses : actions/setup-python@v5
35
35
runs-on : ubuntu-latest
36
36
name : Lint - PEP8 & more (ruff)
37
37
steps :
38
- - uses : actions/checkout@v3
38
+ - uses : actions/checkout@v4
39
39
with :
40
40
persist-credentials : false
41
41
- uses : actions/setup-python@v5
52
52
runs-on : ubuntu-latest
53
53
name : Lint - Import order (isort)
54
54
steps :
55
- - uses : actions/checkout@v3
55
+ - uses : actions/checkout@v4
56
56
with :
57
57
persist-credentials : false
58
58
- uses : actions/setup-python@v5
70
70
runs-on : ubuntu-latest
71
71
name : Lint - Code format (black)
72
72
steps :
73
- - uses : actions/checkout@v3
73
+ - uses : actions/checkout@v4
74
74
with :
75
75
persist-credentials : false
76
76
- uses : actions/setup-python@v5
87
87
runs-on : ubuntu-latest
88
88
name : Lint - Spellcheck (codespell, typos)
89
89
steps :
90
- - uses : actions/checkout@v3
90
+ - uses : actions/checkout@v4
91
91
with :
92
92
persist-credentials : false
93
93
- uses : actions/setup-python@v5
@@ -104,7 +104,7 @@ jobs:
104
104
runs-on : ubuntu-latest
105
105
name : Lint - Hotkeys & docs sync (lint-hotkeys)
106
106
steps :
107
- - uses : actions/checkout@v3
107
+ - uses : actions/checkout@v4
108
108
with :
109
109
persist-credentials : false
110
110
- uses : actions/setup-python@v5
@@ -121,7 +121,7 @@ jobs:
121
121
runs-on : ubuntu-latest
122
122
name : Lint - Docstrings & docs sync (lint-docstring)
123
123
steps :
124
- - uses : actions/checkout@v3
124
+ - uses : actions/checkout@v4
125
125
with :
126
126
persist-credentials : false
127
127
- uses : actions/setup-python@v5
@@ -143,7 +143,7 @@ jobs:
143
143
run : echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> "${GITHUB_ENV}"
144
144
- name : ' Checkout PR branch and all PR commits'
145
145
if : github.event_name == 'pull_request'
146
- uses : actions/checkout@v3
146
+ uses : actions/checkout@v4
147
147
with :
148
148
persist-credentials : false
149
149
ref : ${{ github.event.pull_request.head.sha }}
@@ -167,7 +167,7 @@ jobs:
167
167
runs-on : ubuntu-latest
168
168
name : Install & test - CPython 3.7 (ubuntu), codecov
169
169
steps :
170
- - uses : actions/checkout@v3
170
+ - uses : actions/checkout@v4
171
171
with :
172
172
persist-credentials : false
173
173
- name : Install Python version
@@ -203,7 +203,7 @@ jobs:
203
203
- base_pytest
204
204
- gitlint
205
205
steps :
206
- - uses : actions/checkout@v3
206
+ - uses : actions/checkout@v4
207
207
if : github.event_name == 'pull_request'
208
208
with :
209
209
persist-credentials : false
@@ -243,7 +243,7 @@ jobs:
243
243
runs-on : ${{ matrix.env.OS }}
244
244
name : Install & test - ${{ matrix.env.NAME}}
245
245
steps :
246
- - uses : actions/checkout@v3
246
+ - uses : actions/checkout@v4
247
247
with :
248
248
persist-credentials : false
249
249
- name : Install Python version ${{ matrix.env.PYTHON }}
0 commit comments