fix: recompile agentic workflow lock files with gh-aw v0.68.3#125
Merged
digitarald merged 2 commits intomainfrom Apr 16, 2026
Merged
fix: recompile agentic workflow lock files with gh-aw v0.68.3#125digitarald merged 2 commits intomainfrom
digitarald merged 2 commits intomainfrom
Conversation
Dependabot was bumping github/gh-aw action SHAs inside compiled .lock.yml files without recompiling, creating a version mismatch (compiler_version v0.50.5 vs action refs v0.65.2) that caused all 3 agentic workflows to fail with 'activationfailed' since Mar 31. Fix: - Recompile all lock files with gh-aw v0.68.3 - Add Dependabot ignore rule for github/gh-aw and github/gh-aw-actions to prevent recurrence (per gh-aw docs)
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Recompiles agentic workflow lock files with gh-aw v0.68.3 to resolve activation failures caused by mismatched compiler metadata/action pins, and adds rules to prevent Dependabot from updating gh-aw-related action pins in compiled lock files.
Changes:
- Recompiled agentic workflow
.lock.ymlfiles with updated gh-aw metadata and action pins (v0.68.3). - Added Dependabot ignore rules to avoid updating gh-aw action pins directly.
- Updated the agentics maintenance workflow to the newer generated format and added maintenance operations via
workflow_dispatch/workflow_call.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/daily-doc-updater.lock.yml | Regenerated lock file with new gh-aw metadata, updated action pins, and updated workflow logic. |
| .github/workflows/code-simplifier.lock.yml | Regenerated lock file with new gh-aw metadata, updated action pins, and updated workflow logic. |
| .github/workflows/agentics-maintenance.yml | Updated generated maintenance workflow and added selectable maintenance operations. |
| .github/dependabot.yml | Adds ignore rules intended to stop Dependabot from updating gh-aw action pins in compiled lock files. |
| .github/aw/actions-lock.json | Adds lock entries for new gh-aw actions and actions/github-script@v9. |
Copilot's findings
- Files reviewed: 5/6 changed files
- Comments generated: 5
Dependabot matches on the full action path (e.g. github/gh-aw-actions/setup), not the repo name alone. Use glob patterns to cover all sub-actions.
This was referenced Apr 16, 2026
Open
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.
Problem
All 3 agentic workflows (CI Failure Doctor, Daily Doc Updater, Code Simplifier) have been failing with
activationfailedsince March 31 — 16 consecutive daily failures each.Root cause: Dependabot was bumping
github/gh-awaction SHAs inside the compiled.lock.ymlfiles without recompiling them. This created a version mismatch — lock file metadata saidcompiler_version: v0.50.5but action refs pointed tov0.65.2, causing the activation job to reject the workflow.The gh-aw docs explicitly warn against this:
Fix
gh aw compileusing gh-aw v0.68.3github/gh-aw-actions/*andgithub/gh-aw/*) to prevent recurrenceExpected side effects of recompilation
These are inherent to upgrading from gh-aw v0.50.5 → v0.68.3:
schedule: dailyis used in frontmatter. Code Simplifier:12:17 → 10:36 UTC, Doc Updater:23:31 → 11:45 UTC.agentics-maintenance.ymlgains newworkflow_dispatchoperations (disable,enable,update,upgrade,safe_outputs,create_labels,clean_cache_memories,validate) and aworkflow_callinterface — all generated by the newer compiler.github/gh-aw/actions/setup→github/gh-aw-actions/setup(new action repo structure in v0.68.3),actions/github-scriptv8 → v9.Affected workflows
Testing
Lock files compiled cleanly:
✓ Compiled 3 workflow(s): 0 error(s), 0 warning(s)