File tree Expand file tree Collapse file tree 1 file changed +1
-34
lines changed Expand file tree Collapse file tree 1 file changed +1
-34
lines changed Original file line number Diff line number Diff line change 77permissions : {}
88
99jobs :
10- fpvs :
11- permissions :
12- contents : read
13- runs-on : ubuntu-latest
14- strategy :
15- fail-fast : false
16- matrix :
17- python-version : ["3.12"]
18-
19- steps :
20- - name : Checkout repository
21- uses : actions/checkout@v5
22- with :
23- persist-credentials : false
24-
25- - name : Set up Python ${{ matrix.python-version }}
26- uses : actions/setup-python@v6
27- with :
28- python-version : ${{ matrix.python-version }}
29-
30- - name : Install dependencies
31- run : |
32- python -m venv ./venv
33- source ./venv/bin/activate
34- echo "PATH=${PATH}" >> "${GITHUB_ENV}"
35- python -m pip install --upgrade pip
36- python -m pip install --group all .
37-
38- - name : Run fpvs scan
39- run : |
40- python -m pip install fpvs
41- git clone https://gitlab.com/gitlab-org/security-products/gemnasium-db.git
42- fpvs-scan --verbose
43-
4410 pip-audit :
4511 permissions :
4612 contents : read
6430 python -m venv ./venv
6531 source ./venv/bin/activate
6632 echo "PATH=${PATH}" >> "${GITHUB_ENV}"
33+ python -m pip install --upgrade pip
6734 python -m pip install --group all .
6835
6936 - name : Run pip-audit
You can’t perform that action at this time.
0 commit comments