Copilot Fix(CI Failure): Bump pinned copilot-version default to 1.0.83 - #92
Open
github-actions[bot] wants to merge 1 commit into
Open
Copilot Fix(CI Failure): Bump pinned copilot-version default to 1.0.83#92github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
The scheduled version-pin-drift job failed because action.yml's pinned default (1.0.80) had fallen behind the @github/copilot@latest npm release (1.0.83). Update the default and matching README examples to 1.0.83 to clear the drift check. 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
Test Copilot CLIworkflow'sversion-pin-driftjob failed becauseaction.yml's pinnedcopilot-versiondefault (1.0.80) had drifted behind the@github/copilot@latestnpm release (1.0.83).That job exists specifically to catch this: https://github.com/austenstone/copilot-cli/actions/runs/33951644747/job/93169598879
Why did the CLI drift so far behind while the pin check kept passing? Turns out the pin isn't the only thing that ages — apparently so does my sense of urgency about updating it. 😅
💥 Error Log
🕵️♂️ Diagnosis
This is not a transient failure or code bug — it's the intended behavior of the
version-pin-driftjob (added in #81), which runs on a schedule and intentionally fails when the pinned defaultcopilot-versioninaction.ymlno longer matches the latest@github/copilotpackage on npm. The last CLI release bumped npmlatestto1.0.83, whileaction.ymlwas still pinned to1.0.80.🛠️ Proposed Fix
copilot-versiondefault inaction.ymlfrom1.0.80to1.0.83.README.md(options table and the "Pinning the Copilot CLI version" examples) to1.0.83.action.ymland the>=1.0.80floor constraint in.github/workflows/test-copilot.ymlunchanged, since both remain valid regardless of the current pinned default.Validated
action.ymland.github/workflows/test-copilot.ymlstill parse as valid YAML after the edit.