You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -115,7 +115,7 @@ jobs:
115
115
run: |
116
116
docker pull <your-docker-image>
117
117
docker save -o vuln-image.tar <your-docker-image>
118
-
118
+
119
119
- name: Run Trivy vulnerability scanner in tarball mode
120
120
uses: aquasecurity/trivy-action@master
121
121
with:
@@ -287,7 +287,7 @@ jobs:
287
287
uses: aquasecurity/trivy-action@master
288
288
with:
289
289
scan-type: 'config'
290
-
hide-progress: false
290
+
hide-progress: true
291
291
format: 'sarif'
292
292
output: 'trivy-results.sarif'
293
293
exit-code: '1'
@@ -303,7 +303,7 @@ jobs:
303
303
### Using Trivy to generate SBOM
304
304
It's possible for Trivy to generate an [SBOM](https://www.aquasec.com/cloud-native-academy/supply-chain-security/sbom/) of your dependencies and submit them to a consumer like [GitHub Dependency Graph](https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph).
305
305
306
-
The [sending of an SBOM to GitHub](https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/using-the-dependency-submission-api) feature is only available if you currently have GitHub Dependency Graph [enabled in your repo](https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph#enabling-and-disabling-the-dependency-graph-for-a-private-repository).
306
+
The [sending of an SBOM to GitHub](https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/using-the-dependency-submission-api) feature is only available if you currently have GitHub Dependency Graph [enabled in your repo](https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph#enabling-and-disabling-the-dependency-graph-for-a-private-repository).
307
307
308
308
In order to send results to GitHub Dependency Graph, you will need to create a [GitHub PAT](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token) or use the [GitHub installation access token](https://docs.github.com/en/actions/security-guides/automatic-token-authentication) (also known as `GITHUB_TOKEN`):
309
309
@@ -554,7 +554,7 @@ Following inputs can be used as `step.with` keys:
0 commit comments