Merge branch 'SCA-scan' of github.com:SOOS-FAngelino/test-github-acti… #328
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
on: [push] | |
jobs: | |
synchronous-analysis-with-blocking-result: | |
permissions: | |
security-events: write # for uploading code scanning alert info | |
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | |
name: SOOS SCA Scan | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: actions/checkout@master | |
- name: Run SOOS - Scan for vulnerabilities | |
uses: soos-io/soos-sca-github-action@v2 | |
with: | |
project_name: ${{ github.repository }} | |
#api_url: "https://qa-api.soos.io/api/" | |
# Visit https://soos.io to get the required tokens to leverage SOOS scanning/analysis services | |
client_id: ${{ secrets.PD_SOOS_CLIENT_ID }} | |
api_key: ${{ secrets.PD_SOOS_API_KEY }} | |
log_level: DEBUG |