Skip to content

Commit ba76a35

Browse files
dependabot[bot]mr-c
authored andcommitted
Bump actions/cache from 2 to 3
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v2...v3) --- 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 39f165a commit ba76a35

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
python-version: ${{ env.py-semver }}
3737

3838
- name: Cache for pip
39-
uses: actions/cache@v2
39+
uses: actions/cache@v3
4040
with:
4141
path: ~/.cache/pip
4242
key: ${{ runner.os }}-pip-${{ matrix.step }}-${{ hashFiles('requirements.txt', 'tox.ini') }}
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: MyPy cache
5050
if: ${{ matrix.step == 'mypy' }}
51-
uses: actions/cache@v2
51+
uses: actions/cache@v3
5252
with:
5353
path: .mypy_cache/${{ env.py-semver }}
5454
key: mypy-${{ env.py-semver }}
@@ -127,7 +127,7 @@ jobs:
127127
python-version: ${{ env.py-semver }}
128128

129129
- name: Cache for pip
130-
uses: actions/cache@v2
130+
uses: actions/cache@v3
131131
with:
132132
path: ~/.cache/pip
133133
key: ${{ runner.os }}-pip-${{ matrix.step }}-${{ hashFiles('requirements.txt') }}
@@ -158,7 +158,7 @@ jobs:
158158
python-version: "3.10" # quoted, otherwise that turns into the number 3.1
159159

160160
- name: Cache for pip
161-
uses: actions/cache@v2
161+
uses: actions/cache@v3
162162
with:
163163
path: ~/.cache/pip
164164
key: ${{ runner.os }}-pip-release-${{ hashFiles('requirements.txt', 'test-requirements.txt') }}

0 commit comments

Comments
 (0)