SCA scan current release #248
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: SCA scan current release | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 2 * * *' | |
permissions: read-all | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: 'v1.22.2' | |
- | |
name: Run SCA vulnerability scanners | |
uses: MaibornWolff/secobserve_actions_templates/actions/vulnerability_scanner@5476f0de11c46875081d9767ec166c1e030e9ef0 # main | |
with: | |
so_configuration: 'so_configuration_sca_current.yml' | |
SO_API_TOKEN: ${{ secrets.SO_API_TOKEN }} | |
- | |
name: Run endpoint vulnerability scanners | |
uses: MaibornWolff/secobserve_actions_templates/actions/vulnerability_scanner@5476f0de11c46875081d9767ec166c1e030e9ef0 # main | |
with: | |
so_configuration: 'so_configuration_endpoints.yml' | |
SO_API_TOKEN: ${{ secrets.SO_API_TOKEN }} |