From a39fe162f494cba6edfa5196efa06e854b61eeca Mon Sep 17 00:00:00 2001 From: Copilot <223556219+Copilot@users.noreply.github.com> Date: Tue, 8 Sep 2026 07:10:13 +0000 Subject: [PATCH] Bump pinned Copilot CLI default version to 1.0.83 The scheduled version-pin-drift job in test-copilot.yml compares the copilot-version default pinned in action.yml against @github/copilot@latest on npm and fails the build if they diverge. The pinned default (1.0.80) had fallen behind the current npm latest (1.0.83), so the check failed. Bump the default in action.yml and the accompanying README docs/examples to 1.0.83 to match the current npm release. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- README.md | 6 +++--- action.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) 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