File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -115,31 +115,31 @@ jobs:
115
115
esac
116
116
117
117
- name : Cache pip
118
- uses : actions/cache@v2
118
+ uses : actions/cache@v3
119
119
if : startsWith(runner.os, 'Linux')
120
120
with :
121
121
path : ~/.cache/pip
122
122
key : ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
123
123
restore-keys : |
124
124
${{ matrix.os }}-py${{ matrix.python-version }}-pip-
125
125
- name : Cache pip
126
- uses : actions/cache@v2
126
+ uses : actions/cache@v3
127
127
if : startsWith(runner.os, 'macOS')
128
128
with :
129
129
path : ~/Library/Caches/pip
130
130
key : ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
131
131
restore-keys : |
132
132
${{ matrix.os }}-py${{ matrix.python-version }}-pip-
133
133
- name : Cache ccache
134
- uses : actions/cache@v2
134
+ uses : actions/cache@v3
135
135
with :
136
136
path : |
137
137
~/.ccache
138
138
key : ${{ matrix.os }}-py${{ matrix.python-version }}-ccache-${{ hashFiles('src/*') }}
139
139
restore-keys : |
140
140
${{ matrix.os }}-py${{ matrix.python-version }}-ccache-
141
141
- name : Cache Matplotlib
142
- uses : actions/cache@v2
142
+ uses : actions/cache@v3
143
143
with :
144
144
path : |
145
145
~/.cache/matplotlib
You can’t perform that action at this time.
0 commit comments