-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: bump
setup-trivy
version (#14)
- Loading branch information
1 parent
e71d901
commit ff1b8b0
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,15 @@ Set up your GitHub Actions workflow with a specific version of [Trivy](https://g | |
# ... | ||
steps: | ||
- name: Install Trivy | ||
uses: aquasecurity/[email protected].0 | ||
uses: aquasecurity/[email protected].2 | ||
``` | ||
## Install a specific Trivy version | ||
```yaml | ||
# ... | ||
steps: | ||
- name: Install Trivy | ||
uses: aquasecurity/[email protected].0 | ||
uses: aquasecurity/[email protected].2 | ||
with: | ||
version: v0.56.2 | ||
``` | ||
|
@@ -34,7 +34,7 @@ If you want to enable caching for Linux and MacOS runners, set the `cache` input | |
```yaml | ||
steps: | ||
- name: Install Trivy | ||
uses: aquasecurity/[email protected].0 | ||
uses: aquasecurity/[email protected].2 | ||
with: | ||
version: v0.56.2 | ||
cache: true | ||
|
@@ -50,7 +50,7 @@ To enable caching for Windows runner or if you need to change the Trivy installa | |
```yaml | ||
steps: | ||
- name: Install Trivy | ||
uses: aquasecurity/[email protected].0 | ||
uses: aquasecurity/[email protected].2 | ||
with: | ||
version: v0.56.2 | ||
cache: true | ||
|
@@ -67,7 +67,7 @@ To properly install Trivy, you need to populate `token` from a secret or another | |
```yaml | ||
steps: | ||
- name: Install Trivy | ||
uses: aquasecurity/[email protected].0 | ||
uses: aquasecurity/[email protected].2 | ||
with: | ||
version: v0.56.2 | ||
cache: true | ||
|