DevSecOps #21
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: DevSecOps | |
on: | |
workflow_dispatch: | |
inputs: | |
testing: | |
type: choice | |
options: | |
- DevOps | |
- SAST/SCA | |
- DAST/IAST | |
required: true | |
jobs: | |
secret-leaks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: trufflehog | |
run: docker run --rm -t -v "$PWD:/pwd" trufflesecurity/trufflehog:latest filesystem /pwd/lib/ >> $GITHUB_STEP_SUMMARY | |
semgrep: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: semgrep | |
run: docker run --rm -v "${PWD}:/src" returntocorp/semgrep semgrep scan * >> $GITHUB_STEP_SUMMARY | |
build: | |
runs-on: ubuntu-latest | |
needs: [secret-leaks, semgrep] | |
steps: | |
- name: "npm build" | |
run: echo "Build complete" | |
test: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: "Execute unit tests and smoke tests" | |
run: echo "Test complete" | |
terrascan: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- uses: actions/checkout@v3 | |
- name: terrascan | |
run: docker run --rm -t -v "${PWD}:/pwd" tenable/terrascan scan -i cft -d /pwd/aws >> $GITHUB_STEP_SUMMARY | |
package: | |
needs: terrascan | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Prepare Docker image" | |
run: echo "Image pushed" | |
deploy: | |
runs-on: ubuntu-latest | |
needs: package | |
steps: | |
- name: "Trigger deployment" | |
run: echo "Deployed successfully" |