File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3,24 +3,27 @@ on: push
33jobs :
44 security :
55 runs-on : ubuntu-latest
6+ strategy :
7+ matrix :
8+ python : 10
69 steps :
710 - name : Check out repository
811 uses : actions/checkout@v2
912
1013 - name : Set up Python
1114 uses : actions/setup-python@v2
1215 with :
13- python-version : ' 3.10 '
16+ python-version : ${{ matrix.python }}
1417 cache : ' pip'
1518
1619 - name : Install dependencies
1720 run : |
1821 python -m pip install --upgrade pip
1922 pip install -r ./lambda-source/requirements.txt
2023 npm install --no-fund snyk -g
21-
2224 - name : Run Snyk to check for vulnerabilities
2325 run : |
24- snyk test --file=./lambda-source/requirements.txt
26+ snyk test --org=$ORG -- file=./lambda-source/requirements.txt
2527 env :
2628 SNYK_TOKEN : ${{ secrets.SNYK_TOKEN }}
29+ ORG : broadwing-limited
You can’t perform that action at this time.
0 commit comments