Skip to content

Commit

Permalink
Do not include the poetry lock file in the GH actions cache key
Browse files Browse the repository at this point in the history
  • Loading branch information
Joscha Götzer committed Oct 25, 2020
1 parent d04d495 commit 5f83f63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
uses: actions/cache@v1
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
# key: venv-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
key: venv-${{ matrix.python-version }}
- name: Poetry install
run: poetry install
- name: Show outdated packages
Expand Down

0 comments on commit 5f83f63

Please sign in to comment.