diff --git a/.github/workflows/code_quality.yaml b/.github/workflows/code_quality.yaml index 14297da..eaed949 100644 --- a/.github/workflows/code_quality.yaml +++ b/.github/workflows/code_quality.yaml @@ -76,7 +76,7 @@ jobs: # Install only type check dependency - name: Install dependencies if: steps.cqtc.outputs.cache-hit != 'true' - run: poetry install --only=types --no-root + run: poetry install --only=types --no-interaction --no-root - name: Check types run: poetry run mypy tesk/ diff --git a/.github/workflows/vulnerability_test.yaml b/.github/workflows/vulnerability_test.yaml index ce75c43..6c09c86 100644 --- a/.github/workflows/vulnerability_test.yaml +++ b/.github/workflows/vulnerability_test.yaml @@ -28,7 +28,7 @@ jobs: # Install only type check dependency - name: Install dependencies if: steps.vt.outputs.cache-hit != 'true' - run: poetry install --only=security --no-root + run: poetry install --only=security --no-interaction --no-root - name: Check types run: poetry run bandit -c pyproject.toml -r tesk/ @@ -52,7 +52,7 @@ jobs: # Install only type check dependency - name: Install dependencies if: steps.vt.outputs.cache-hit != 'true' - run: poetry install --only=security --no-root + run: poetry install --only=security --no-interaction --no-root - name: Check types run: poetry run safety check --full-report