Skip to content

Commit c6ef8b9

Browse files
Bump actions/cache from 2 to 3 (#65)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3420036 commit c6ef8b9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
python-version: ${{ matrix.python-version }}
2727

2828
- name: cache pip
29-
uses: actions/cache@v2
29+
uses: actions/cache@v3
3030
with:
3131
path: ~/.cache/pip
3232
key: pip-py${{ matrix.python-version }}

.github/workflows/linting.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/setup-python@v3
1717
with:
1818
python-version: 3.8
19-
- uses: actions/cache@v2
19+
- uses: actions/cache@v3
2020
with:
2121
path: ~/.cache/pip
2222
key: pip-py3.8

.github/workflows/pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: checkout
1616
uses: actions/checkout@v3
1717
- name: Cache pip and pre-commit
18-
uses: actions/cache@v2
18+
uses: actions/cache@v3
1919
with:
2020
path: |
2121
~/.cache/pre-commit

0 commit comments

Comments
 (0)