Skip to content

Commit

Permalink
#310 try using a virtual env and use only local to avoid system packages
Browse files Browse the repository at this point in the history
  • Loading branch information
bikegeek committed Feb 2, 2023
1 parent 13859df commit 6ef471c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/vulnerabilities.yaml
Expand Up @@ -37,8 +37,12 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: install
run: python -m pip install .
run: |
python -m venv env/
source env/bin/activate
python -m pip install .
- uses: pypa/gh-action-pip-audit@v1.0.5
with:
inputs: requirements.txt
no-deps: true
virtual-environment: env/
local: true

0 comments on commit 6ef471c

Please sign in to comment.