From f27667b4e83a95ce6046ffffc0749223a47c4016 Mon Sep 17 00:00:00 2001 From: tteenntt <87744652+Unlxii@users.noreply.github.com> Date: Tue, 23 Jun 2026 18:04:29 +0700 Subject: [PATCH] docs: add Default column to optional inputs table The optional inputs table in README.md was missing a Default column. All three inputs have default values declared in action.yml: - cosign-release: v3.0.6 - install-dir: $HOME/.cosign - use-sudo: false This adds the Default column to make the table consistent with the action.yml source of truth and improves discoverability for users. Signed-off-by: tteenntt <87744652+Unlxii@users.noreply.github.com> --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9aa7332..7bc70ea 100644 --- a/README.md +++ b/README.md @@ -163,11 +163,11 @@ jobs: ### Optional Inputs The following optional inputs: -| Input | Description | -| --- | --- | -| `cosign-release` | `cosign` version to use instead of the default. | -| `install-dir` | directory to place the `cosign` binary into instead of the default (`$HOME/.cosign`). | -| `use-sudo` | set to `true` if `install-dir` location requires sudo privs. Defaults to false. | +| Input | Description | Default | +| --- | --- | --- | +| `cosign-release` | `cosign` version to use instead of the default. | `v3.0.6` | +| `install-dir` | Directory to place the `cosign` binary into. | `$HOME/.cosign` | +| `use-sudo` | Set to `true` if `install-dir` location requires sudo privileges. | `false` | ## Security