Skip to content

Commit 3922b00

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 71dd100 commit 3922b00

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci-tests.yml

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

4949
- name: Cache for pip
50-
uses: actions/cache@v2
50+
uses: actions/cache@v3
5151
with:
5252
path: ~/.cache/pip
5353
key: ${{ runner.os }}-pip-${{ matrix.step }}-${{ hashFiles('requirements.txt', 'tox.ini') }}
@@ -59,7 +59,7 @@ jobs:
5959
6060
- name: MyPy cache
6161
if: ${{ matrix.step == 'mypy' }}
62-
uses: actions/cache@v2
62+
uses: actions/cache@v3
6363
with:
6464
path: .mypy_cache/${{ env.py-semver }}
6565
key: mypy-${{ env.py-semver }}
@@ -97,7 +97,7 @@ jobs:
9797
python-version: ${{ env.py-semver }}
9898

9999
- name: Cache for pip
100-
uses: actions/cache@v2
100+
uses: actions/cache@v3
101101
with:
102102
path: ~/.cache/pip
103103
key: ${{ runner.os }}-pip-${{ matrix.step }}-${{ hashFiles('requirements.txt') }}
@@ -133,7 +133,7 @@ jobs:
133133
python-version: "3.10" # quoted, otherwise that turns into the number 3.1
134134

135135
- name: Cache for pip
136-
uses: actions/cache@v2
136+
uses: actions/cache@v3
137137
with:
138138
path: ~/.cache/pip
139139
key: ${{ runner.os }}-pip-release-${{ hashFiles('requirements.txt', 'test-requirements.txt') }}

.github/workflows/tag_to_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
python-version: "3.10" # quoted, otherwise that turns into the number 3.1
3232

3333
- name: Cache for pip
34-
uses: actions/cache@v2
34+
uses: actions/cache@v3
3535
with:
3636
path: ~/.cache/pip
3737
key: ${{ runner.os }}-pip-release-${{ hashFiles('requirements.txt', 'test-requirements.txt') }}

0 commit comments

Comments
 (0)