diff --git a/.fossa.yml b/.fossa.yml new file mode 100644 index 00000000000..2368780f310 --- /dev/null +++ b/.fossa.yml @@ -0,0 +1,9 @@ +version: 3 + +project: + id: git+github.com/firebolt-db/firebolt-python-sdk + name: firebolt-python-sdk + +targets: + only: + - type: pipenv diff --git a/.github/workflows/security-scan.yml b/.github/workflows/security-scan.yml new file mode 100644 index 00000000000..cf00c75e11f --- /dev/null +++ b/.github/workflows/security-scan.yml @@ -0,0 +1,21 @@ +name: Firebolt Security Scan + +on: + workflow_dispatch: + pull_request: + push: + branches: [ main ] + +jobs: + security-scan: + runs-on: ubuntu-latest + steps: + - name: "Checkout Code" + uses: actions/checkout@v2 + + - name: "Security Scan" + uses: firebolt-db/action-security-scan@main + with: + github-key: ${{ secrets.GITHUB_TOKEN }} + fossa-key: ${{ secrets.FOSSA_API_KEY }} + sonar-key: ${{ secrets.SONAR_TOKEN }}