We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fc62a6 commit e0dc454Copy full SHA for e0dc454
.github/workflows/trivy.yml
@@ -0,0 +1,20 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: ["*"]
6
+ pull_request:
7
+ branches: [main]
8
9
+jobs:
10
+ build:
11
+ name: Trivy Scan
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Install Trivy
15
+ run: |
16
+ wget https://github.com/aquasecurity/trivy/releases/download/v0.38.0/trivy_0.38.0_Linux-64bit.deb
17
+ sudo dpkg -i trivy_0.18.3_Linux-64bit.deb
18
+ - name: Scan Image
19
20
+ trivy image --timeout 60m ghcr.io/containerd/nydus-snapshotter:latest
0 commit comments