Copilot Fix(CI Failure): Bump pinned copilot-version default to 1.0.83 - #96
Closed
github-actions[bot] wants to merge 1 commit into
Closed
github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
The version-pin-drift job compares action.yml's pinned copilot-version default against the npm @latest version and hard-fails on scheduled runs when they diverge. The default was still pinned to 1.0.80 while @github/copilot@latest is now 1.0.83, causing the scheduled CI run to fail with: ::warning::copilot-version default is pinned to 1.0.80 but @latest is 1.0.83 ##[error]Process completed with exit code 1. Update the default and all doc examples to 1.0.83. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Owner
|
Superseded by #108, which bumps the pin to 1.0.86 and caps the auto-fixer so a recurring failure can't open one PR per night. This PR targeted an already-superseded version. |
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 failed on theversion-pin-driftjob.Turns out even our CI has version FOMO. 📌➡️🏃💨
https://github.com/austenstone/copilot-cli/actions/runs/34322322480/job/102371545359#step:4:5
💥 Error Log
🕵️♂️ Diagnosis
The
version-pin-driftjob reads the pinnedcopilot-versiondefault fromaction.ymland compares it against@github/copilot@lateston npm. It only hard-fails onschedule-triggered runs (so PRs just get a warning). The default was still1.0.80while npm@latesthas moved on to1.0.83, so the scheduled run failed as designed — this is a deterministic version-drift failure, not a code regression.🛠️ Proposed Fix
Bump the pinned
copilot-versiondefault inaction.ymlfrom1.0.80to1.0.83, and update the matching examples/table entries inREADME.mdfor consistency. Verified locally that the drift-check script now reportspinned=1.0.83 latest=1.0.83(match).