fix(app): update container tag docker.io/nodered/node-red to v3.1.8 #161
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
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Run Aqua Security Trivy vulnerability scanner | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
trivy: | |
name: Trivy | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/marketplace/actions/harden-runner | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
# https://github.com/marketplace/actions/checkout | |
- name: Checkout Repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
# https://github.com/marketplace/actions/aqua-security-trivy | |
- name: Run Trivy vulnerability scanner in IaC mode | |
uses: aquasecurity/trivy-action@d710430a6722f083d3b36b8339ff66b32f22ee55 # 0.19.0 | |
with: | |
scan-type: config | |
hide-progress: false | |
format: sarif | |
output: trivy-results.sarif | |
exit-code: "1" | |
ignore-unfixed: true | |
severity: CRITICAL,HIGH | |
scan-ref: infra/terraform | |
# Upload the results to GitHub's code scanning dashboard. | |
# https://github.com/github/codeql-action | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9 | |
with: | |
sarif_file: trivy-results.sarif |