Update aquasecurity/trivy-action digest to a11da62 #249
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: Continuous Integration | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: [main] | |
paths-ignore: | |
- '.github/**' | |
- '*.md' | |
jobs: | |
tests: | |
name: CodeQL Analyze | |
runs-on: ubuntu-latest | |
steps: | |
- name: Unit Tests | |
run: | | |
echo "running unit test..." | |
echo "unit tests passed!" | |
codeql-analysis: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
name: CodeQL Scan | |
uses: ./.github/workflows/security_codeql.yml | |
semgrep-analysis: | |
permissions: | |
security-events: write | |
name: Semgrep Scan | |
uses: ./.github/workflows/security_semgrep.yml | |
dependency-scan: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
name: Dependency Scan | |
uses: ./.github/workflows/security_dependency.yml | |
container-scan-trivy: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
name: Trivy Scan | |
uses: ./.github/workflows/security_container.yml | |
linting: | |
permissions: | |
security-events: write | |
name: Megalinter | |
uses: ./.github/workflows/megalinter.yml | |
dast-scan: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
name: Dastardly | |
uses: ./.github/workflows/security_dastardly.yml |