diff --git a/README.md b/README.md index b50e0d7..89419ad 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ Use `secret-env-vars` to strip and redact sensitive values from shell/MCP enviro | `log-level` | Log level: `none`, `error`, `warning`, `info`, `debug`, `all` | ❌ | `all` | | `upload-artifact` | Upload Copilot logs as workflow artifacts | ❌ | `true` | | `fail-on-error` | Fail the step if Copilot CLI exits with non-zero code | ❌ | `false` | -| `copilot-version` | Version spec of the Copilot CLI to install. Examples: `1.0.80`, `1.x`, `>=1.0.80`, `latest`, `prerelease`. | ❌ | `1.0.80` | +| `copilot-version` | Version spec of the Copilot CLI to install. Examples: `1.0.83`, `1.x`, `>=1.0.83`, `latest`, `prerelease`. | ❌ | `1.0.83` | | `options` | Additional CLI flags (e.g., `"--no-custom-instructions"`) | ❌ | `--screen-reader --no-color --stream off` | ### Pinning the Copilot CLI version @@ -145,9 +145,9 @@ change your workflow's behavior overnight. `copilot-version` accepts any npm version spec, so you choose your own tradeoff between stability and freshness: ```yaml -copilot-version: '1.0.80' # exact pin (default) +copilot-version: '1.0.83' # exact pin (default) copilot-version: '1.x' # newest 1.x -copilot-version: '>=1.0.80' # floor, no ceiling +copilot-version: '>=1.0.83' # floor, no ceiling copilot-version: 'latest' # newest stable copilot-version: 'prerelease' # bleeding edge ``` diff --git a/action.yml b/action.yml index d315090..d2e9b8b 100644 --- a/action.yml +++ b/action.yml @@ -58,9 +58,9 @@ inputs: description: 'Comma-separated list of URLs or domains to deny (e.g., "evil.com")' required: false copilot-version: - description: 'Version spec of the Copilot CLI to install. Examples: 1.0.80, 1.x, >=1.0.80, latest, prerelease.' + description: 'Version spec of the Copilot CLI to install. Examples: 1.0.83, 1.x, >=1.0.83, latest, prerelease.' required: false - default: '1.0.80' + default: '1.0.83' model: description: 'Model to use (e.g., "claude-sonnet-4.6", "claude-opus-4.8", "gpt-5.5")' required: false