Merge pull request #144 from tesla-ce/add_tests #605
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Vulnerability scan | |
on: [push, pull_request] | |
jobs: | |
vulnerabilities-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build requirements | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pip-tools twine | |
pip-compile | |
- uses: debricked/actions/scan@v1 | |
env: | |
USERNAME: ${{ secrets.DEBRICKED_USERNAME }} | |
PASSWORD: ${{ secrets.DEBRICKED_PASSWORD }} |