From 0706f62920d5d6ea5ceff7b22fc9724937bbc749 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Thu, 25 Sep 2025 19:19:49 +0200 Subject: [PATCH] Update Trivy version to v0.66.0 for consistency --- setup-trivy/README.md | 6 +++--- setup-trivy/action.yaml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/setup-trivy/README.md b/setup-trivy/README.md index 9ac46e9..a413c51 100644 --- a/setup-trivy/README.md +++ b/setup-trivy/README.md @@ -25,7 +25,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.57.1" # Optional: Trivy version (default: v0.57.1) + version: "v0.66.0" # Optional: Trivy version (default: v0.66.0) architecture: "amd64" # Optional: amd64 or arm64 (default: amd64) ``` @@ -47,7 +47,7 @@ jobs: - name: Setup Trivy uses: your-username/trivy-actions@main/setup-trivy with: - version: "v0.57.1" + version: "v0.66.0" architecture: "amd64" - name: Run Trivy vulnerability scanner @@ -68,7 +68,7 @@ The action is structured into logical steps for better maintainability: | Input | Description | Required | Default | | -------------- | ----------------------------------------- | -------- | --------- | -| `version` | Trivy version to download (e.g., v0.57.1) | No | `v0.57.1` | +| `version` | Trivy version to download (e.g., v0.66.0) | No | `v0.66.0` | | `architecture` | System architecture (amd64, arm64) | No | `amd64` | ## Supported Platforms diff --git a/setup-trivy/action.yaml b/setup-trivy/action.yaml index 82e9fbb..930d561 100644 --- a/setup-trivy/action.yaml +++ b/setup-trivy/action.yaml @@ -7,9 +7,9 @@ branding: inputs: version: - description: "Trivy version to download (e.g., v0.57.1)" + description: "Trivy version to download (e.g., v0.66.0)" required: false - default: "v0.57.1" + default: "v0.66.0" architecture: description: "System architecture (amd64, arm64)" required: false