feat(RCSET-11195): Adding sdlc_snyk_container_scan #1
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: sdlc_snyk_container_analysis | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
branches: [main] | ||
jobs: | ||
wait-for-pr-ci: | ||
uses: OutSystems/sdlc-gha-snyk/.github/workflows/wait-for-pr-check.yml@v1 | ||
secrets: inherit | ||
with: | ||
commitSha: ${{ github.event.pull_request.head.sha }} | ||
runnerName: wait-for-pr-ci | ||
checkName: SDLC.TestNotes.Provider.Service-PR # YOU NEED TO EDIT THIS | ||
call-sdlc-snyk-container: | ||
needs: wait-for-pr-ci | ||
uses: OutSystems/sdlc-gha-snyk/.github/workflows/[email protected] #This is in a non-blokcing mode | ||
Check failure on line 19 in .github/workflows/security_sdlc_snyk_container_analysis.yaml GitHub Actions / .github/workflows/security_sdlc_snyk_container_analysis.yamlInvalid workflow file
|
||
secrets: inherit | ||
with: | ||
serviceName: "outsystems-sdlc-testnotes-service" # YOU NEED TO EDIT THIS | ||
commitSha: ${{ github.event.pull_request.head.sha }} | ||
dockerFilePath: Dockerfile # YOU (MAY) NEED TO EDIT THIS | ||
call-sdlc-snyk-container-ct: | ||
needs: wait-for-pr-ci | ||
uses: OutSystems/sdlc-gha-snyk/.github/workflows/[email protected] #This is in a non-blokcing mode | ||
secrets: inherit | ||
with: | ||
serviceName: "outsystems-sdlc-testnotes-service-ct" # YOU NEED TO EDIT THIS | ||
commitSha: ${{ github.event.pull_request.head.sha }} | ||
dockerFilePath: Dockerfile # YOU (MAY) NEED TO EDIT THIS |