Skip to content

Commit

Permalink
Updated poetry cache commands in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexthomas93 committed Feb 25, 2025
1 parent 1c044e9 commit 8b3b07c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-cache --with dev --all-extras
- name: Clear Poetry cache
run: poetry cache clear --all .
run: poetry cache clear --all --no-interaction .
- name: Show disk usage after Poetry installation
run: |
df -h
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-cache --with dev --all-extras
- name: Clear Poetry cache
run: poetry cache clear --all .
run: poetry cache clear --all --no-interaction .
- name: Show disk usage after Poetry installation
run: |
df -h
Expand Down

0 comments on commit 8b3b07c

Please sign in to comment.