Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e7a6fbe

Browse files
authored
Merge pull request #22680 from matplotlib/dependabot/github_actions/actions/cache-3
Bump actions/cache from 2 to 3
2 parents 8c94a22 + 471d3c7 commit e7a6fbe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)