From 979ba6f678161b8ebb19b745d5e25a4deb3cb067 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Wed, 6 Aug 2025 17:36:27 -0400 Subject: [PATCH] fix: use bash for pip-audit step --- .github/workflows/tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7d5470e..96660a7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,9 +26,8 @@ jobs: run: poetry run black --check . - name: Run security audit run: | - if ! poetry run pip-audit; then - echo "::warning::pip-audit found vulnerabilities" - fi + poetry run pip-audit || echo "::warning::pip-audit found vulnerabilities" + shell: bash - name: Run tests with coverage run: | poetry run coverage run -m pytest