Skip to content

Commit 235e69d

Browse files
build(deps): bump actions/cache from 2.1.7 to 3.2.4
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.2.4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2.1.7...v3.2.4) --- 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 f5feb97 commit 235e69d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/setup-python@v3
1818
with:
1919
python-version: 3.8
20-
- uses: actions/cache@v2.1.7
20+
- uses: actions/cache@v3.2.4
2121
with:
2222
path: ~/.cache/pip
2323
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/setup-python@v3
1818
with:
1919
python-version: 3.8
20-
- uses: actions/cache@v2.1.7
20+
- uses: actions/cache@v3.2.4
2121
with:
2222
path: ~/.cache/pip
2323
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/setup-python@v3
2828
with:
2929
python-version: ${{ matrix.python-ver }}
30-
- uses: actions/cache@v2.1.7
30+
- uses: actions/cache@v3.2.4
3131
with:
3232
path: ~/.cache/pip
3333
key: ${{ runner.os }}-${{ matrix.python-ver }}-pip-${{ hashFiles('**/requirements.txt') }}

0 commit comments

Comments
 (0)