Skip to content
This repository has been archived by the owner on Nov 10, 2024. It is now read-only.

Commit

Permalink
Bump actions/cache from 1 to 3 (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Aug 13, 2023
1 parent b490898 commit 6923b4e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: abatilo/actions-poetry@v2.3.0
with:
poetry-version: 1.5.1
- uses: actions/cache@v1
- uses: actions/cache@v3
id: cache-deps
with:
path: ~/.cache/pip
Expand All @@ -37,11 +37,11 @@ jobs:
- name: Install dependencies
run: poetry install -E session

- uses: actions/cache@v1
- uses: actions/cache@v3
with:
path: .mypy_cache
key: mypy-${{ matrix.python-version }}
- uses: actions/cache@v1
- uses: actions/cache@v3
with:
path: .pytest_cache
key: pytest-${{ matrix.python-version }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: abatilo/actions-poetry@v2.3.0
with:
poetry-version: 1.5.1
- uses: actions/cache@v1
- uses: actions/cache@v3
id: cache-deps
with:
path: ~/.cache/pip
Expand All @@ -34,11 +34,11 @@ jobs:
- name: Install dependencies
run: poetry install -E session
- uses: actions/cache@v1
- uses: actions/cache@v3
with:
path: .mypy_cache
key: mypy-${{ matrix.python-version }}
- uses: actions/cache@v1
- uses: actions/cache@v3
with:
path: .pytest_cache
key: pytest-${{ matrix.python-version }}
Expand Down

0 comments on commit 6923b4e

Please sign in to comment.