Copilot Fix(CI Failure): Bump pinned copilot-version default to 1.0.82 - #86
Open
github-actions[bot] wants to merge 1 commit into
Open
Copilot Fix(CI Failure): Bump pinned copilot-version default to 1.0.82#86github-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 intentionally fails when the action.yml pinned copilot-version default falls behind the @github/copilot npm package's @latest version. The default was still pinned to 1.0.80 while @latest is 1.0.82, causing run 33367494749 to fail. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Author
|
Note: the PR-triggered "Test Copilot CLI" run shows |
6 tasks
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.
Summary of issue
The scheduled
version-pin-driftjob in.github/workflows/test-copilot.ymlfailed on run 33367494749 because thecopilot-versiondefault pinned inaction.yml(1.0.80) has fallen behind the@github/copilotnpm packages@latestversion (1.0.82).Somewhere, a version bump elf forgot to update our pin and now the CI robot is throwing a well-deserved tantrum on a schedule. 🤖⏰
https://github.com/austenstone/copilot-cli/actions/runs/33367494749/job/91095958541#step:3:1
💥 Error Log
🕵️♂️ Diagnosis
The
version-pin-driftjob compares thecopilot-versioninput default inaction.ymlagainst the latest published version of@github/copiloton npm. This check is designed to intentionally fail (test "${{ github.event_name }}" != "schedule") on scheduled runs when a drift is detected, so maintainers get notified that the pinned default is stale. This is not a code regression — it is the check working as intended, flagging thataction.ymlneeds a version bump.🛠️ Proposed Fix
Bump the pinned
copilot-versiondefault from1.0.80to1.0.82inaction.yml, and update the matching example/default references inREADME.mdto keep docs in sync.Validation performed:
npm view @github/copilot@latest versionthat latest is1.0.82.action.ymlwithpython3 -c "import yaml; ..."to confirm the new default reads back as1.0.82..github/workflows/test-copilot.ymlstill parses as valid YAML.