Skip to content

Commit

Permalink
Fix cache when updating Python
Browse files Browse the repository at this point in the history
  • Loading branch information
devon-mar committed Jan 18, 2024
1 parent 9145e55 commit fa83d72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock', '.github/workflows/ci.yml') }}

- name: Run poetry install
run: poetry install
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock', '.github/workflows/ci.yml') }}

- name: Run poetry install
run: poetry install
Expand Down

0 comments on commit fa83d72

Please sign in to comment.