Copilot Fix(CI Failure): Bump pinned Copilot CLI default version to 1.0.83 - #93
Open
github-actions[bot] wants to merge 1 commit into
Open
Copilot Fix(CI Failure): Bump pinned Copilot CLI default version to 1.0.83#93github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
The version-pin-drift job (scheduled) detected that the pinned default in action.yml (1.0.80) is behind the latest @github/copilot npm release (1.0.83), causing the workflow run to fail by design as a maintenance nudge. Bump the pinned default and update the corresponding README references to match. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The scheduled `version-pin-drift` check in Test Copilot CLI failed because the pinned CLI default in
action.ymlhad fallen behind the latest@github/copilotnpm release.Why did the CLI's own version pin fall behind? Turns out it needed a version update too. 😄
https://github.com/austenstone/copilot-cli/actions/runs/34018266702/job/92173595780#step:2:16
💥 Error Log
🕵️♂️ Diagnosis
This is not a transient failure or a broken workflow — the
version-pin-driftjob is an intentional maintenance guardrail (added in #81) that deliberately fails onscheduleruns when the pinnedcopilot-versiondefault inaction.ymlno longer matches@github/copilot@lateston npm. It's a nudge to bump the pin, not a bug in the CI config itself.Confirmed drift:
action.yml):1.0.801.0.83🛠️ Proposed Fix
Bump the pinned default
copilot-versionfrom1.0.80to1.0.83in:action.yml(the actual default input value)README.md(documented default value and the "exact pin (default)" example)This resolves the drift so the scheduled check passes again until the next CLI release.