fix(ci): recompile gh-aw workflows off the blocked v0.83.4 - #68
Merged
Merged
Conversation
The `activation` job fails on every agentic workflow in this repo:
Blocked compile-agentic version: v0.83.4 is in the blocked versions list.
Update gh-aw to the latest version and recompile your workflow.
gh-aw fetches github/gh-aw-actions/.github/aw/compat.json at run time and
refuses to start for any compiler version in `blockedVersions`, currently a
contiguous band from v0.82.8 to v0.85.3. All five lock files here were
compiled at v0.83.4, so all five are inside it. Nothing in this repo
changed to cause it — the list is external and moved underneath us.
Recompiled with gh aw v0.88.7, the current stable release and outside the
band. Regenerated rather than hand-edited, per docs/standards/01-baseline.md:
a lock file's body is only valid against the release that produced it.
Three files beyond the locks are also compiler output, not hand edits:
- .github/aw/actions-lock.json — pinned versions v0.83.4 -> v0.88.7
- .github/workflows/agentics-maintenance.yml — generated by
maintenance_workflow.go; carries an upstream fix where the `operation`
input default becomes 'none' and the guard accepts it
- .gitattributes — gh-aw no longer emits `merge=ours` for lock files
Source .md workflows are untouched; only generated artifacts changed.
|
Warning Review limit reachedNext included review available in 7 minutes. View limit detailsLimit details: You’ve used the included review currently available. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. Review configuration: ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Advanced Run ID: 📒 Files selected for processing (8)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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
Every agentic workflow in this repo currently fails at the
activationjob:Cause — external, not a code change
gh-aw fetches
github/gh-aw-actions/.github/aw/compat.jsonat run time and refuses to start for any compiler version listed inblockedVersions. That list is currently a contiguous band, v0.82.8 → v0.85.3. All five lock files here were compiled at v0.83.4, squarely inside it.Nothing in this repo changed. The list moved underneath us, which is why this surfaced as a sudden failure on an unrelated PR.
Fix
Recompiled with
gh aw v0.88.7— the current stable release, and outside the blocked band. Regenerated, not hand-edited, per01-baseline.md: a lock file's body is only valid against the release that generated it.Files beyond the locks
All three are compiler output, verified individually:
.github/aw/actions-lock.jsonv0.83.4→v0.88.7.github/workflows/agentics-maintenance.ymlmaintenance_workflow.go; carries an upstream fix making theoperationinput default'none'and the guard accept it.gitattributesmerge=oursfor lock filesSource
.mdworkflows are untouched — only generated artifacts changed.Test plan
gh aw compile→ 5 workflows, 5 succeeded, 0 warnings"compiler_version":"v0.88.7"minimumVersion(v0.65.3).mdfile was modifiedScope note
Across the org this affects 2 repos, 6 lock files — this repo (5) and one lock file in
pypi. The other repos sit atv0.79.4, which is below the blocked band and aboveminimumVersion, so they still run. A companion PR coverspypi.