more unittests #5565
Workflow file for this run
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: Check for vulnerabilities in the code | |
on: [push] | |
permissions: read-all | |
jobs: | |
check_code_vulnerabilities: | |
if: github.event.repository.url == 'https://github.com/MaibornWolff/SecObserve' | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- | |
name: Run vulnerability scanners for code | |
uses: MaibornWolff/secobserve_actions_templates/actions/vulnerability_scanner@6eefe400d9efeaae2b7abe05710785fa4a53dbf6 # main | |
with: | |
so_configuration: 'so_configuration_code.yml' | |
SO_API_TOKEN: ${{ secrets.SO_API_TOKEN }} |