Skip to content

aquasecurity/setup-trivy

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

setup-trivy

Set up your GitHub Actions workflow with a specific version of Trivy

Usage

Install the latest Trivy version

# ...
steps:
  - name: Install Trivy
    uses: aquasecurity/setup-trivy@v0.1.0

Install a specific Trivy version

# ...
steps:
  - name: Install Trivy
    uses: aquasecurity/setup-trivy@v0.1.0
    with:
      version: v0.56.1

Caching

setup-trivy uses actions/cache under the hood but requires less configuration settings. This caches the trivy binary so that next time you run, instead of downloading the binary it is loaded from the cache. This is not the same cache as other Trivy artifacts such as trivy-db and trivy-java-db. The cache input is optional, and caching is turned off by default.

Enable caching

If you want to enable caching, set the cache input to true and specify the version.

steps:
  - name: Install Trivy
    uses: aquasecurity/setup-trivy@v0.1.0
    with:
      version: v0.56.1
      cache: true

Caching is not supported for empty and latest versions!

About

Set up your GitHub Actions workflow with a specific version of Trivy

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published