@@ -17,10 +17,10 @@ jobs:
17
17
name : Build Docs
18
18
runs-on : ubuntu-latest
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
22
22
- name : Set up Python
23
- uses : actions/setup-python@v4
23
+ uses : actions/setup-python@v5
24
24
with :
25
25
python-version : ' 3.x'
26
26
@@ -48,15 +48,15 @@ jobs:
48
48
node-version : ' 16.x'
49
49
50
50
- name : Build and Check Package
51
- uses : hynek/build-and-inspect-python-package@v1
51
+ uses : hynek/build-and-inspect-python-package@v2
52
52
53
53
test_javascript :
54
54
name : Run javascript unit tests
55
55
runs-on : ubuntu-latest
56
56
steps :
57
- - uses : actions/checkout@v3
57
+ - uses : actions/checkout@v4
58
58
- name : Use Node.js
59
- uses : actions/setup-node@v3
59
+ uses : actions/setup-node@v4
60
60
with :
61
61
node-version : ' 16.x'
62
62
- name : Install dependencies
71
71
! github.event.schedule &&
72
72
github.repository_owner == 'pytest-dev'
73
73
}}
74
- uses : codecov/codecov-action@v3
74
+ uses : codecov/codecov-action@v5
75
75
with :
76
76
token : ${{ secrets.CODECOV_TOKEN }}
77
77
fail_ci_if_error : false
@@ -107,15 +107,15 @@ jobs:
107
107
- name : Set newline behavior
108
108
run : git config --global core.autocrlf false
109
109
110
- - uses : actions/checkout@v3
110
+ - uses : actions/checkout@v4
111
111
112
112
- name : Use Node.js
113
- uses : actions/setup-node@v3
113
+ uses : actions/setup-node@v4
114
114
with :
115
115
node-version : ' 16.x'
116
116
117
117
- name : Set up python
118
- uses : actions/setup-python@v4
118
+ uses : actions/setup-python@v5
119
119
with :
120
120
python-version : ${{ matrix.python-version }}
121
121
@@ -126,7 +126,7 @@ jobs:
126
126
run : python -m pip install --upgrade tox
127
127
128
128
- name : Cache tox virtual environment
129
- uses : actions/cache@v3
129
+ uses : actions/cache@v4
130
130
with :
131
131
path : .tox
132
132
key : ${{ matrix.os }}-tox-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml', 'tox.ini') }}
@@ -148,7 +148,7 @@ jobs:
148
148
matrix.with-coverage &&
149
149
github.repository_owner == 'pytest-dev'
150
150
}}
151
- uses : codecov/codecov-action@v3
151
+ uses : codecov/codecov-action@v5
152
152
with :
153
153
token : ${{ secrets.CODECOV_TOKEN }}
154
154
fail_ci_if_error : false
@@ -174,18 +174,18 @@ jobs:
174
174
- name : Set newline behavior
175
175
run : git config --global core.autocrlf false
176
176
177
- - uses : actions/checkout@v3
177
+ - uses : actions/checkout@v4
178
178
179
179
- name : Start chrome
180
180
run : ./start
181
181
182
182
- name : Use Node.js
183
- uses : actions/setup-node@v3
183
+ uses : actions/setup-node@v4
184
184
with :
185
185
node-version : ' 16.x'
186
186
187
187
- name : Set up python
188
- uses : actions/setup-python@v4
188
+ uses : actions/setup-python@v5
189
189
with :
190
190
python-version : ${{ matrix.python-version }}
191
191
@@ -196,7 +196,7 @@ jobs:
196
196
run : python -m pip install --upgrade tox
197
197
198
198
- name : Cache tox virtual environment
199
- uses : actions/cache@v3
199
+ uses : actions/cache@v4
200
200
with :
201
201
path : .tox
202
202
key : ubuntu-latest-tox-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml', 'tox.ini') }}
@@ -218,7 +218,7 @@ jobs:
218
218
matrix.with-coverage &&
219
219
github.repository_owner == 'pytest-dev'
220
220
}}
221
- uses : codecov/codecov-action@v3
221
+ uses : codecov/codecov-action@v5
222
222
with :
223
223
token : ${{ secrets.CODECOV_TOKEN }}
224
224
fail_ci_if_error : false
@@ -242,18 +242,18 @@ jobs:
242
242
- name : Set newline behavior
243
243
run : git config --global core.autocrlf false
244
244
245
- - uses : actions/checkout@v3
245
+ - uses : actions/checkout@v4
246
246
247
247
- name : Start chrome
248
248
run : ./start
249
249
250
250
- name : Use Node.js
251
- uses : actions/setup-node@v3
251
+ uses : actions/setup-node@v4
252
252
with :
253
253
node-version : ' 16.x'
254
254
255
255
- name : Set up python
256
- uses : actions/setup-python@v4
256
+ uses : actions/setup-python@v5
257
257
with :
258
258
python-version : ${{ matrix.python-version }}
259
259
@@ -264,7 +264,7 @@ jobs:
264
264
run : python -m pip install --upgrade tox
265
265
266
266
- name : Cache tox virtual environment
267
- uses : actions/cache@v3
267
+ uses : actions/cache@v4
268
268
with :
269
269
path : .tox
270
270
key : ubuntu-latest-tox-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml', 'tox.ini') }}
0 commit comments