Skip to content

Commit 8b3b07c

Browse files
committed
Updated poetry cache commands in GitHub Actions
1 parent 1c044e9 commit 8b3b07c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pr-e2e-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
8080
run: poetry install --no-interaction --no-cache --with dev --all-extras
8181
- name: Clear Poetry cache
82-
run: poetry cache clear --all .
82+
run: poetry cache clear --all --no-interaction .
8383
- name: Show disk usage after Poetry installation
8484
run: |
8585
df -h

.github/workflows/scheduled-e2e-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
8888
run: poetry install --no-interaction --no-cache --with dev --all-extras
8989
- name: Clear Poetry cache
90-
run: poetry cache clear --all .
90+
run: poetry cache clear --all --no-interaction .
9191
- name: Show disk usage after Poetry installation
9292
run: |
9393
df -h

0 commit comments

Comments
 (0)