9
9
markdown-link-check-full :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
13
- - uses : actions/setup-python@v2
14
- - uses : actions/setup-node@v2
12
+ - uses : actions/checkout@v4
13
+ - uses : actions/setup-python@v5
14
+ with :
15
+ python-version : 3.10.12
16
+ - uses : actions/setup-node@v4
15
17
with :
16
18
node-version : ' 12'
17
19
- name : Install manual dependencies
26
28
runs-on : ubuntu-latest
27
29
# TODO: Re-use pytest workflow once https://github.com/github/roadmap/issues/257 is done.
28
30
# steps:
29
- # - uses: actions/checkout@v2
31
+ # - uses: actions/checkout@v4
30
32
# - uses: ./.github/workflows/pytest.yml
31
33
# with:
32
34
# # Run all tests.
@@ -42,13 +44,13 @@ jobs:
42
44
- python-version : 3.10.12
43
45
pip_constraints : test_constraints_version.txt
44
46
steps :
45
- - uses : actions/checkout@v2
47
+ - uses : actions/checkout@v4
46
48
- name : Set up Python
47
- uses : actions/setup-python@v2
49
+ uses : actions/setup-python@v5
48
50
with :
49
51
python-version : ${{ matrix.python-version }}
50
52
- name : Cache pip
51
- uses : actions/cache@v2
53
+ uses : actions/cache@v4
52
54
with :
53
55
# This path is specific to Ubuntu
54
56
path : ~/.cache/pip
77
79
--cov-report=html --junitxml=junit/test-results-${{ matrix.python-version }}.xml \
78
80
-p no:warnings -v -n 8
79
81
- name : Upload pytest test results
80
- uses : actions/upload-artifact@v2
82
+ uses : actions/upload-artifact@v4
81
83
with :
82
84
name : artifacts-${{ matrix.python-version }}
83
85
path : |
0 commit comments