fix: remove explicit shell
Some checks failed
SCA - pip-audit / pip-audit (push) Failing after 1m16s

This commit is contained in:
akarkode 2026-04-28 09:57:47 +07:00
parent a7f4eecfa7
commit d227d5cdf1

View File

@ -9,30 +9,22 @@ on:
jobs:
pip-audit:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout code
shell: bash
run: |
rm -rf repo
git clone https://oauth2:${{ secrets.GITEA_TOKEN }}@git.akarkode.com/${{ gitea.repository }}.git repo
cd repo
git checkout ${{ gitea.sha }}
cd repo && git checkout ${{ gitea.sha }}
- name: Install pip-audit
shell: bash
run: pip3 install pip-audit
- name: Run pip-audit scan
shell: bash
run: |
cd repo
pip-audit -r Pipfile.lock || true
- name: Fail on HIGH/CRITICAL
shell: bash
run: |
cd repo
pip-audit -r Pipfile.lock --fail-on-severity high