We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06aefe6 commit 846dfc4Copy full SHA for 846dfc4
.github/workflows/node.js.yml
@@ -33,8 +33,10 @@ jobs:
33
steps:
34
- uses: actions/checkout@v4
35
- name: Install Trivy
36
- run: curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh
+ run: |
37
+ curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh
38
+ sudo mv trivy /usr/local/bin/trivy
39
- name: Scan Docker Image
- run: ./trivy image simple-application:sqlite
40
+ run: trivy image simple-application:sqlite
41
- name: Scan Kubernetes Manifests
- run: ./trivy k8s --report all --file simple-app/templates/deployment.yaml
42
+ run: trivy k8s --report all --file simple-app/templates/deployment.yaml
0 commit comments