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

Skip to content

Commit e6a22df

Browse files
Bump actions/cache from 2 to 3.0.1
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2...v3.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ad66238 commit e6a22df

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
python-version: '3.7'
4141

42-
- uses: actions/cache@v2
42+
- uses: actions/cache@v3.0.1
4343
id: numpy-cache
4444
with:
4545
path: numpy-aarch64-cache/

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,31 +102,31 @@ jobs:
102102
esac
103103
104104
- name: Cache pip
105-
uses: actions/cache@v2
105+
uses: actions/cache@v3.0.1
106106
if: startsWith(runner.os, 'Linux')
107107
with:
108108
path: ~/.cache/pip
109109
key: ${{ runner.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
110110
restore-keys: |
111111
${{ runner.os }}-py${{ matrix.python-version }}-pip-
112112
- name: Cache pip
113-
uses: actions/cache@v2
113+
uses: actions/cache@v3.0.1
114114
if: startsWith(runner.os, 'macOS')
115115
with:
116116
path: ~/Library/Caches/pip
117117
key: ${{ runner.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
118118
restore-keys: |
119119
${{ runner.os }}-py${{ matrix.python-version }}-pip-
120120
- name: Cache ccache
121-
uses: actions/cache@v2
121+
uses: actions/cache@v3.0.1
122122
with:
123123
path: |
124124
~/.ccache
125125
key: ${{ runner.os }}-py${{ matrix.python-version }}-ccache-${{ hashFiles('src/*') }}
126126
restore-keys: |
127127
${{ runner.os }}-py${{ matrix.python-version }}-ccache-
128128
- name: Cache Matplotlib
129-
uses: actions/cache@v2
129+
uses: actions/cache@v3.0.1
130130
with:
131131
path: |
132132
~/.cache/matplotlib

0 commit comments

Comments
 (0)