Conversation
Updated 6 actions (actions/github-script v9, gh-aw-actions/setup v0.68.5, gh-aw/actions/setup v0.68.5, softprops/action-gh-release v3.0.0). Pinned 14 container images. Compiled 29 workflows. Post-processed all lock files. Patched COPILOT_MODEL fallback to claude-sonnet-4.5 (gh-aw#26565). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
✅ Coverage Check PassedOverall Coverage
📁 Per-file Coverage Changes (1 files)
Coverage comparison generated by |
There was a problem hiding this comment.
Pull request overview
This PR recompiles the repository’s agentic GitHub Actions workflows to align with gh-aw v0.68.5, updating pinned action SHAs/container references and incorporating newer generated workflow behaviors (e.g., improved Copilot error detection and runtime path handling).
Changes:
- Recompiled multiple
.github/workflows/*.lock.ymlworkflows withgh-aw v0.68.5(updated action SHAs, CLI/AWF versions, container pinning details, and regenerated steps). - Updated
.github/aw/actions-lock.jsonentries for action pins and added a container digest lock map. - Updated
.github/agents/agentic-workflows.agent.mdreferences togh-aw v0.68.5docs/prompts.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/update-release-notes.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and adjusts generated steps/outputs. |
| .github/workflows/smoke-codex.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and generated execution/artifact behavior. |
| .github/workflows/security-review.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and error-detection outputs. |
| .github/workflows/plan.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and generated steps/outputs. |
| .github/workflows/issue-monster.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and generated steps/outputs. |
| .github/workflows/firewall-issue-dispatcher.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and generated steps/outputs. |
| .github/workflows/copilot-token-usage-analyzer.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and generated steps/outputs. |
| .github/workflows/copilot-token-optimizer.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and generated steps/outputs. |
| .github/workflows/cli-flag-consistency-checker.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and generated steps/outputs. |
| .github/workflows/claude-token-usage-analyzer.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and generated steps/outputs. |
| .github/workflows/ci-cd-gaps-assessment.lock.yml | Recompiled lock file to v0.68.5; updates action pins/containers and generated steps/outputs. |
| .github/aw/actions-lock.json | Updates pinned action SHAs and adds/refreshes a container digest lock section. |
| .github/agents/agentic-workflows.agent.md | Updates referenced upstream gh-aw documentation links to v0.68.5. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 30/30 changed files
- Comments generated: 1
| - name: Clean up engine output files | ||
| run: | | ||
| rm -fr ${{ runner.temp }}/gh-aw/mcp-config/logs/ |
There was a problem hiding this comment.
The workflow deletes ${{ runner.temp }}/gh-aw/mcp-config/logs/ in the "Clean up engine output files" step, but the subsequent "Upload agent artifacts" step still includes that same logs directory in its path list. This means the Codex engine logs will never be uploaded (and any downstream debugging that relies on them will lose data). Consider either removing the deletion, moving it to after artifact upload, or adjusting the upload paths to match what you intend to keep.
| - name: Clean up engine output files | |
| run: | | |
| rm -fr ${{ runner.temp }}/gh-aw/mcp-config/logs/ |
🏗️ Build Test Suite Results
Overall: 8/8 ecosystems passed — ✅ PASS
|
Summary
Recompile all agentic workflows for gh-aw v0.68.5.
Changes
claude-sonnet-4.5in smoke-copilot and smoke-copilot-byok (workaround for bug: byok-copilot feature generates empty COPILOT_MODEL fallback, breaking BYOK mode gh-aw#26565)Files Changed