Skip to content

Commit

Permalink
chore(deps): bump actions/cache from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [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] <support@github.com>
  • Loading branch information
dependabot[bot] authored and jeffwidman committed Jan 21, 2023
1 parent b3dcad2 commit 1c0c453
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/testing.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
python-version: "3.10"

- name: Handle pip cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
Expand Down Expand Up @@ -78,15 +78,15 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Handle pip cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Handle ZK installation cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: zookeeper
key: ${{ runner.os }}-zookeeper
Expand Down

0 comments on commit 1c0c453

Please sign in to comment.