Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down