File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 25
25
run : |
26
26
echo "::set-output name=dir::$(pip cache dir)"
27
27
- name : Cache pip
28
- uses : actions/cache@v2
28
+ uses : actions/cache@v4
29
29
with :
30
30
path : ${{ steps.pip-cache.outputs.dir }}
31
31
key : ${{ runner.os }}-pip-${{ hashFiles('setup.cfg') }}
34
34
${{ runner.os }}-pip-
35
35
- name : Cache checked links
36
36
if : ${{ matrix.group == 'link_check' }}
37
- uses : actions/cache@v2
37
+ uses : actions/cache@v4
38
38
with :
39
39
path : ~/.cache/pytest-link-check
40
40
key : ${{ runner.os }}-linkcheck-${{ hashFiles('**/*.md', '**/*.rst') }}-md-links
Original file line number Diff line number Diff line change 28
28
run : |
29
29
echo "::set-output name=dir::$(pip cache dir)"
30
30
- name : Cache pip
31
- uses : actions/cache@v1
31
+ uses : actions/cache@v4
32
32
with :
33
33
path : ${{ steps.pip-cache.outputs.dir }}
34
34
key : ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.py') }}
Original file line number Diff line number Diff line change 29
29
node-version : ' 12.x'
30
30
31
31
- name : Cache node modules
32
- uses : actions/cache@v2
32
+ uses : actions/cache@v4
33
33
env :
34
34
cache-name : cache-node-modules
35
35
with :
42
42
${{ runner.os }}-
43
43
44
44
- name : Cache pip on Linux
45
- uses : actions/cache@v1
45
+ uses : actions/cache@v4
46
46
if : startsWith(runner.os, 'Linux')
47
47
with :
48
48
path : ~/.cache/pip
You can’t perform that action at this time.
0 commit comments