File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -115,31 +115,31 @@ jobs:
115115 esac
116116
117117 - name : Cache pip
118- uses : actions/cache@v2
118+ uses : actions/cache@v3
119119 if : startsWith(runner.os, 'Linux')
120120 with :
121121 path : ~/.cache/pip
122122 key : ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
123123 restore-keys : |
124124 ${{ matrix.os }}-py${{ matrix.python-version }}-pip-
125125 - name : Cache pip
126- uses : actions/cache@v2
126+ uses : actions/cache@v3
127127 if : startsWith(runner.os, 'macOS')
128128 with :
129129 path : ~/Library/Caches/pip
130130 key : ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
131131 restore-keys : |
132132 ${{ matrix.os }}-py${{ matrix.python-version }}-pip-
133133 - name : Cache ccache
134- uses : actions/cache@v2
134+ uses : actions/cache@v3
135135 with :
136136 path : |
137137 ~/.ccache
138138 key : ${{ matrix.os }}-py${{ matrix.python-version }}-ccache-${{ hashFiles('src/*') }}
139139 restore-keys : |
140140 ${{ matrix.os }}-py${{ matrix.python-version }}-ccache-
141141 - name : Cache Matplotlib
142- uses : actions/cache@v2
142+ uses : actions/cache@v3
143143 with :
144144 path : |
145145 ~/.cache/matplotlib
You can’t perform that action at this time.
0 commit comments