This commit is contained in:
parent
74c0c43832
commit
a7f4eecfa7
@ -9,20 +9,30 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
pip-audit:
|
pip-audit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
rm -rf repo
|
||||||
git clone https://oauth2:${{ secrets.GITEA_TOKEN }}@git.akarkode.com/${{ gitea.repository }}.git 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
|
- name: Install pip-audit
|
||||||
|
shell: bash
|
||||||
run: pip3 install pip-audit
|
run: pip3 install pip-audit
|
||||||
|
|
||||||
- name: Run pip-audit scan
|
- name: Run pip-audit scan
|
||||||
working-directory: repo
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
cd repo
|
||||||
pip-audit -r Pipfile.lock || true
|
pip-audit -r Pipfile.lock || true
|
||||||
|
|
||||||
- name: Fail on HIGH/CRITICAL
|
- name: Fail on HIGH/CRITICAL
|
||||||
working-directory: repo
|
shell: bash
|
||||||
run: pip-audit -r Pipfile.lock --fail-on-severity high
|
run: |
|
||||||
|
cd repo
|
||||||
|
pip-audit -r Pipfile.lock --fail-on-severity high
|
||||||
Loading…
Reference in New Issue
Block a user