diff --git a/setup-db/README.md b/setup-db/README.md index b765a7a..4f59fa2 100644 --- a/setup-db/README.md +++ b/setup-db/README.md @@ -28,8 +28,6 @@ jobs: - uses: actions/checkout@v4 - name: Setup Trivy uses: https://gitea.t000-n.de/t.behrendt/trivy-actions/setup-trivy@0.0.1 - with: - version: "v0.66.0" - name: Setup DB uses: https://gitea.t000-n.de/t.behrendt/trivy-actions/setup-db@0.0.1 - name: Scan for vulnerabilities diff --git a/setup-trivy/README.md b/setup-trivy/README.md index 6835c39..78e877f 100644 --- a/setup-trivy/README.md +++ b/setup-trivy/README.md @@ -10,7 +10,7 @@ A reusable Gitea Action that downloads and sets up the Trivy binary for vulnerab - name: Setup Trivy uses: your-username/trivy-actions@main/setup-trivy with: - version: "v0.66.0" # Optional: Trivy version (default: v0.66.0) + version: "v0.66.0" # Optional: Trivy version (default: latest) ``` ### Complete Example @@ -28,14 +28,12 @@ jobs: - uses: actions/checkout@v4 - name: Setup Trivy uses: your-username/trivy-actions@main/setup-trivy - with: - version: "v0.66.0" - name: Scan for vulnerabilities run: trivy fs . ``` ## Inputs -| Input | Description | Required | Default | -| --------- | ----------------------------------------- | -------- | --------- | -| `version` | Trivy version to download (e.g., v0.66.0) | No | `v0.66.0` | +| Input | Description | Required | Default | +| --------- | ----------------------------------------- | -------- | -------- | +| `version` | Trivy version to download (e.g., v0.66.0) | No | `latest` |