File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,31 +17,31 @@ jobs:
17
17
18
18
steps :
19
19
- name : Checkout
20
- uses : actions/checkout@v2
20
+ uses : actions/checkout@v4
21
21
22
22
- name : Set up Python
23
- uses : actions/setup-python@v2
23
+ uses : actions/setup-python@v4
24
24
with :
25
25
python-version : ${{ matrix.python-version }}
26
26
27
27
- name : Restore Ubuntu cache
28
- uses : actions/cache@v1
28
+ uses : actions/cache@v3
29
29
if : matrix.operating-system == 'ubuntu-latest'
30
30
with :
31
31
path : ~/.cache/pip
32
32
key : ${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/setup.py')}}
33
33
restore-keys : ${{ matrix.os }}-${{ matrix.python-version }}-
34
34
35
35
- name : Restore MacOS cache
36
- uses : actions/cache@v1
36
+ uses : actions/cache@v3
37
37
if : matrix.operating-system == 'macos-latest'
38
38
with :
39
39
path : ~/Library/Caches/pip
40
40
key : ${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/setup.py')}}
41
41
restore-keys : ${{ matrix.os }}-${{ matrix.python-version }}-
42
42
43
43
- name : Restore Windows cache
44
- uses : actions/cache@v1
44
+ uses : actions/cache@v3
45
45
if : matrix.operating-system == 'windows-latest'
46
46
with :
47
47
path : ~\AppData\Local\pip\Cache
You can’t perform that action at this time.
0 commit comments