├── .github └── workflows │ ├── bump-trivy.yaml │ ├── sync-trivy-checks.yaml │ ├── sync-trivy-db.yaml │ ├── sync-trivy-java-db.yaml │ └── test.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── action.yaml ├── docs └── images │ └── trivy-action.png ├── entrypoint.sh ├── test ├── data │ ├── config-sarif-report │ │ ├── main.tf │ │ └── report.sarif │ ├── config-scan │ │ ├── main.tf │ │ └── report.json │ ├── fs-scan │ │ └── report │ ├── github-dep-snapshot │ │ └── report.gsbom │ ├── image-scan │ │ └── report │ ├── rootfs-scan │ │ └── report │ ├── secret-scan │ │ └── report.json │ ├── with-ignore-files │ │ ├── .trivyignore1 │ │ ├── .trivyignore2 │ │ └── report │ ├── with-tf-vars │ │ ├── dev.tfvars │ │ ├── main.tf │ │ └── report.json │ └── with-trivy-yaml-cfg │ │ ├── report.json │ │ └── trivy.yaml └── test.bats └── workflow.yml /.github/workflows/bump-trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/.github/workflows/bump-trivy.yaml -------------------------------------------------------------------------------- /.github/workflows/sync-trivy-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/.github/workflows/sync-trivy-checks.yaml -------------------------------------------------------------------------------- /.github/workflows/sync-trivy-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/.github/workflows/sync-trivy-db.yaml -------------------------------------------------------------------------------- /.github/workflows/sync-trivy-java-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/.github/workflows/sync-trivy-java-db.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/action.yaml -------------------------------------------------------------------------------- /docs/images/trivy-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/docs/images/trivy-action.png -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /test/data/config-sarif-report/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/config-sarif-report/main.tf -------------------------------------------------------------------------------- /test/data/config-sarif-report/report.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/config-sarif-report/report.sarif -------------------------------------------------------------------------------- /test/data/config-scan/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/config-scan/main.tf -------------------------------------------------------------------------------- /test/data/config-scan/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/config-scan/report.json -------------------------------------------------------------------------------- /test/data/fs-scan/report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/fs-scan/report -------------------------------------------------------------------------------- /test/data/github-dep-snapshot/report.gsbom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/github-dep-snapshot/report.gsbom -------------------------------------------------------------------------------- /test/data/image-scan/report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/image-scan/report -------------------------------------------------------------------------------- /test/data/rootfs-scan/report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/rootfs-scan/report -------------------------------------------------------------------------------- /test/data/secret-scan/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/secret-scan/report.json -------------------------------------------------------------------------------- /test/data/with-ignore-files/.trivyignore1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/with-ignore-files/.trivyignore1 -------------------------------------------------------------------------------- /test/data/with-ignore-files/.trivyignore2: -------------------------------------------------------------------------------- 1 | # test data #2 for trivy-ignores option 2 | CVE-2019-15554 3 | -------------------------------------------------------------------------------- /test/data/with-ignore-files/report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/with-ignore-files/report -------------------------------------------------------------------------------- /test/data/with-tf-vars/dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/with-tf-vars/dev.tfvars -------------------------------------------------------------------------------- /test/data/with-tf-vars/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/with-tf-vars/main.tf -------------------------------------------------------------------------------- /test/data/with-tf-vars/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/with-tf-vars/report.json -------------------------------------------------------------------------------- /test/data/with-trivy-yaml-cfg/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/with-trivy-yaml-cfg/report.json -------------------------------------------------------------------------------- /test/data/with-trivy-yaml-cfg/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/data/with-trivy-yaml-cfg/trivy.yaml -------------------------------------------------------------------------------- /test/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/test/test.bats -------------------------------------------------------------------------------- /workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aquasecurity/trivy-action/HEAD/workflow.yml --------------------------------------------------------------------------------