Skip to content

Commit

Permalink
ci: add cve scanning action (#53)
Browse files Browse the repository at this point in the history
* ci: add cve scanning action
* ci: remove python 3.7 as it is no longer supported

---------

Signed-off-by: Terri Oda <terri@toybox.ca>
  • Loading branch information
terriko committed Jul 7, 2023
1 parent c411f0e commit 8674100
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/cve-bin-tool.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CVE Binary Tool Scanner
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '20 2 * * *'
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: intel/cve-bin-tool-action@main
# with:
# nvd_api_key: '${{ secrets.NVD_API_KEY }}'
# exclude_dir: test
3 changes: 1 addition & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -48,4 +48,3 @@ jobs:
run: |
cd documentation/
make html

0 comments on commit 8674100

Please sign in to comment.