Copilot Fix(CI Failure): Bump pinned copilot-version default to 1.0.83 - #97
Open
github-actions[bot] wants to merge 1 commit into
Open
Copilot Fix(CI Failure): Bump pinned copilot-version default to 1.0.83#97github-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 npm registry's @github/copilot @latest (1.0.83). Bump the default and its docs/examples 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-driftjob in Test Copilot CLI (run 34448413557) failed because the CLI grew up faster than our pin.💥 Error Log
🕵️ Diagnosis
This is not a code regression —
version-pin-driftis an intentional canary job (added in #81) that comparesaction.yml's pinnedcopilot-versiondefault against@github/copilot@lateston npm, and only fails on the nightlyscheduletrigger (seetest "${{ github.event_name }}" != "schedule"in the job). It correctly detected that the pin (1.0.80) had fallen behind the registry's latest release (1.0.83).🛠️ Proposed Fix
Bump the pinned default from
1.0.80to1.0.83in:action.yml(copilot-versioninput default + description + inline comment)README.md(options table + pinning examples)Verified locally that
python3 -c "import yaml; ...['copilot-version']['default']"now returns1.0.83, matchingnpm view @github/copilot@latest version.