File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 39
39
with :
40
40
python-version : ' 3.7'
41
41
42
- - uses : actions/cache@v2
42
+ - uses : actions/cache@v3.0.1
43
43
id : numpy-cache
44
44
with :
45
45
path : numpy-aarch64-cache/
Original file line number Diff line number Diff line change @@ -102,31 +102,31 @@ jobs:
102
102
esac
103
103
104
104
- name : Cache pip
105
- uses : actions/cache@v2
105
+ uses : actions/cache@v3.0.1
106
106
if : startsWith(runner.os, 'Linux')
107
107
with :
108
108
path : ~/.cache/pip
109
109
key : ${{ runner.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
110
110
restore-keys : |
111
111
${{ runner.os }}-py${{ matrix.python-version }}-pip-
112
112
- name : Cache pip
113
- uses : actions/cache@v2
113
+ uses : actions/cache@v3.0.1
114
114
if : startsWith(runner.os, 'macOS')
115
115
with :
116
116
path : ~/Library/Caches/pip
117
117
key : ${{ runner.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
118
118
restore-keys : |
119
119
${{ runner.os }}-py${{ matrix.python-version }}-pip-
120
120
- name : Cache ccache
121
- uses : actions/cache@v2
121
+ uses : actions/cache@v3.0.1
122
122
with :
123
123
path : |
124
124
~/.ccache
125
125
key : ${{ runner.os }}-py${{ matrix.python-version }}-ccache-${{ hashFiles('src/*') }}
126
126
restore-keys : |
127
127
${{ runner.os }}-py${{ matrix.python-version }}-ccache-
128
128
- name : Cache Matplotlib
129
- uses : actions/cache@v2
129
+ uses : actions/cache@v3.0.1
130
130
with :
131
131
path : |
132
132
~/.cache/matplotlib
You can’t perform that action at this time.
0 commit comments