Skip to content

Commit 6c70710

Browse files
authored
Update tests.yml
1 parent 692617a commit 6c70710

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

Diff for: .github/workflows/tests.yml

+20-20
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
name: Build Docs
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.x'
2626

@@ -48,15 +48,15 @@ jobs:
4848
node-version: '16.x'
4949

5050
- name: Build and Check Package
51-
uses: hynek/build-and-inspect-python-package@v1
51+
uses: hynek/build-and-inspect-python-package@v2
5252

5353
test_javascript:
5454
name: Run javascript unit tests
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858
- name: Use Node.js
59-
uses: actions/setup-node@v3
59+
uses: actions/setup-node@v4
6060
with:
6161
node-version: '16.x'
6262
- name: Install dependencies
@@ -71,7 +71,7 @@ jobs:
7171
! github.event.schedule &&
7272
github.repository_owner == 'pytest-dev'
7373
}}
74-
uses: codecov/codecov-action@v3
74+
uses: codecov/codecov-action@v5
7575
with:
7676
token: ${{ secrets.CODECOV_TOKEN }}
7777
fail_ci_if_error: false
@@ -107,15 +107,15 @@ jobs:
107107
- name: Set newline behavior
108108
run: git config --global core.autocrlf false
109109

110-
- uses: actions/checkout@v3
110+
- uses: actions/checkout@v4
111111

112112
- name: Use Node.js
113-
uses: actions/setup-node@v3
113+
uses: actions/setup-node@v4
114114
with:
115115
node-version: '16.x'
116116

117117
- name: Set up python
118-
uses: actions/setup-python@v4
118+
uses: actions/setup-python@v5
119119
with:
120120
python-version: ${{ matrix.python-version }}
121121

@@ -126,7 +126,7 @@ jobs:
126126
run: python -m pip install --upgrade tox
127127

128128
- name: Cache tox virtual environment
129-
uses: actions/cache@v3
129+
uses: actions/cache@v4
130130
with:
131131
path: .tox
132132
key: ${{ matrix.os }}-tox-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml', 'tox.ini') }}
@@ -148,7 +148,7 @@ jobs:
148148
matrix.with-coverage &&
149149
github.repository_owner == 'pytest-dev'
150150
}}
151-
uses: codecov/codecov-action@v3
151+
uses: codecov/codecov-action@v5
152152
with:
153153
token: ${{ secrets.CODECOV_TOKEN }}
154154
fail_ci_if_error: false
@@ -174,18 +174,18 @@ jobs:
174174
- name: Set newline behavior
175175
run: git config --global core.autocrlf false
176176

177-
- uses: actions/checkout@v3
177+
- uses: actions/checkout@v4
178178

179179
- name: Start chrome
180180
run: ./start
181181

182182
- name: Use Node.js
183-
uses: actions/setup-node@v3
183+
uses: actions/setup-node@v4
184184
with:
185185
node-version: '16.x'
186186

187187
- name: Set up python
188-
uses: actions/setup-python@v4
188+
uses: actions/setup-python@v5
189189
with:
190190
python-version: ${{ matrix.python-version }}
191191

@@ -196,7 +196,7 @@ jobs:
196196
run: python -m pip install --upgrade tox
197197

198198
- name: Cache tox virtual environment
199-
uses: actions/cache@v3
199+
uses: actions/cache@v4
200200
with:
201201
path: .tox
202202
key: ubuntu-latest-tox-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml', 'tox.ini') }}
@@ -218,7 +218,7 @@ jobs:
218218
matrix.with-coverage &&
219219
github.repository_owner == 'pytest-dev'
220220
}}
221-
uses: codecov/codecov-action@v3
221+
uses: codecov/codecov-action@v5
222222
with:
223223
token: ${{ secrets.CODECOV_TOKEN }}
224224
fail_ci_if_error: false
@@ -242,18 +242,18 @@ jobs:
242242
- name: Set newline behavior
243243
run: git config --global core.autocrlf false
244244

245-
- uses: actions/checkout@v3
245+
- uses: actions/checkout@v4
246246

247247
- name: Start chrome
248248
run: ./start
249249

250250
- name: Use Node.js
251-
uses: actions/setup-node@v3
251+
uses: actions/setup-node@v4
252252
with:
253253
node-version: '16.x'
254254

255255
- name: Set up python
256-
uses: actions/setup-python@v4
256+
uses: actions/setup-python@v5
257257
with:
258258
python-version: ${{ matrix.python-version }}
259259

@@ -264,7 +264,7 @@ jobs:
264264
run: python -m pip install --upgrade tox
265265

266266
- name: Cache tox virtual environment
267-
uses: actions/cache@v3
267+
uses: actions/cache@v4
268268
with:
269269
path: .tox
270270
key: ubuntu-latest-tox-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml', 'tox.ini') }}

0 commit comments

Comments
 (0)