Copilot Fix(CI Failure): Bump pinned Copilot CLI default to 1.0.83 - #95
Open
github-actions[bot] wants to merge 1 commit into
Open
Copilot Fix(CI Failure): Bump pinned Copilot CLI default to 1.0.83#95github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
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>
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-driftjob caught that our pinned default fell one patch release behind — turns out even version numbers need to keep up with the Joneses.https://github.com/austenstone/copilot-cli/actions/runs/34197807759/job/Compare%20pinned%20default%20against%20registry%20latest#step:3
💥 Error Log
🕵️♂️ Diagnosis
action.ymlpinsinputs.copilot-version.defaultto1.0.80. Theversion-pin-driftjob (added in #81) runs on a schedule and fails whenever this pinned default no longer matches@github/copilot@lateston npm, to catch stale pins before they go unnoticed. npm now publishes1.0.83, so the check failed as designed — this is not a code regression, just an expected drift alert.🛠️ Proposed Fix
Bump the pinned default from
1.0.80to1.0.83inaction.yml, and update the matching examples/table inREADME.mdfor consistency. Verified locally that re-running the exact drift-check script now reportspinned=1.0.83 latest=1.0.83(match).