Skip to content

chore: recompile workflows for gh-aw v0.68.5#2034

Closed
lpcox wants to merge 1 commit intomainfrom
copilot/upgrade-gh-aw-0.68.5
Closed

chore: recompile workflows for gh-aw v0.68.5#2034
lpcox wants to merge 1 commit intomainfrom
copilot/upgrade-gh-aw-0.68.5

Conversation

@lpcox
Copy link
Copy Markdown
Collaborator

@lpcox lpcox commented Apr 16, 2026

Summary

Recompile all agentic workflows for gh-aw v0.68.5.

Changes

  • 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 (smoke-opencode skipped: opencode engine not yet supported)
  • Post-processed all lock files
  • Patched COPILOT_MODEL fallback to claude-sonnet-4.5 in 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

  • 30 files: lock files, actions-lock.json, agent files

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>
@lpcox lpcox requested a review from Mossaka as a code owner April 16, 2026 16:46
Copilot AI review requested due to automatic review settings April 16, 2026 16:46
@github-actions
Copy link
Copy Markdown
Contributor

✅ Coverage Check Passed

Overall Coverage

Metric Base PR Delta
Lines 85.35% 85.43% 📈 +0.08%
Statements 85.24% 85.33% 📈 +0.09%
Functions 87.96% 87.96% ➡️ +0.00%
Branches 77.95% 78.00% 📈 +0.05%
📁 Per-file Coverage Changes (1 files)
File Lines (Before → After) Statements (Before → After)
src/docker-manager.ts 86.8% → 87.1% (+0.30%) 86.4% → 86.7% (+0.29%)

Coverage comparison generated by scripts/ci/compare-coverage.ts

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.yml workflows with gh-aw v0.68.5 (updated action SHAs, CLI/AWF versions, container pinning details, and regenerated steps).
  • Updated .github/aw/actions-lock.json entries for action pins and added a container digest lock map.
  • Updated .github/agents/agentic-workflows.agent.md references to gh-aw v0.68.5 docs/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

Comment on lines +1023 to +1025
- name: Clean up engine output files
run: |
rm -fr ${{ runner.temp }}/gh-aw/mcp-config/logs/
Copy link

Copilot AI Apr 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Suggested change
- name: Clean up engine output files
run: |
rm -fr ${{ runner.temp }}/gh-aw/mcp-config/logs/

Copilot uses AI. Check for mistakes.
@github-actions
Copy link
Copy Markdown
Contributor

🏗️ Build Test Suite Results

Ecosystem Project Build/Install Tests Status
Bun elysia 1/1 passed ✅ PASS
Bun hono 1/1 passed ✅ PASS
C++ fmt N/A ✅ PASS
C++ json N/A ✅ PASS
Deno oak N/A 1/1 passed ✅ PASS
Deno std N/A 1/1 passed ✅ PASS
.NET hello-world N/A ✅ PASS
.NET json-parse N/A ✅ PASS
Go color 1/1 passed ✅ PASS
Go env 1/1 passed ✅ PASS
Go uuid 1/1 passed ✅ PASS
Java gson 1/1 passed ✅ PASS
Java caffeine 1/1 passed ✅ PASS
Node.js clsx passed ✅ PASS
Node.js execa passed ✅ PASS
Node.js p-limit passed ✅ PASS
Rust fd 1/1 passed ✅ PASS
Rust zoxide 1/1 passed ✅ PASS

Overall: 8/8 ecosystems passed — ✅ PASS

Generated by Build Test Suite for issue #2034 · ● 457.9K ·

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants