Skip to content

Commit a4cec10

Browse files
chore(deps): bump github/gh-aw from 0.56.2 to 0.57.2 (#146)
Bumps [github/gh-aw](https://github.com/github/gh-aw) from 0.56.2 to 0.57.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/github/gh-aw/releases">github/gh-aw's releases</a>.</em></p> <blockquote> <h2>v0.57.2</h2> <h2>🌟 Release Highlights</h2> <p>This patch release improves agent self-awareness and polishes report readability in built-in reporting workflows.</p> <h3>✨ What's New</h3> <ul> <li><strong>Agent execution context detection</strong> — All engine execution steps (Copilot, Claude, Codex, Gemini) now inject three new environment variables: <code>GITHUB_AW=true</code> lets agents detect they're running inside a GitHub Agentic Workflow, <code>GH_AW_PHASE</code> identifies whether it's the main <code>agent</code> run or a <code>detection</code> (threat detection) run, and <code>GH_AW_VERSION</code> exposes the gh-aw compiler version. This enables agents to tag their output, adapt behavior, and integrate with observability tooling. 166 lock files have been recompiled to include these new variables. (<a href="https://redirect.github.com/github/gh-aw/pull/20382">#20382</a>)</li> </ul> <h3>🐛 Bug Fixes &amp; Improvements</h3> <ul> <li><strong>Cleaner report formatting with progressive disclosure</strong> — The <code>daily-secrets-analysis</code> and <code>copilot-pr-merged-report</code> built-in workflows now use correct header levels (no top-level <code>#</code>/<code>##</code> headings) and wrap verbose sections (e.g., Top 10 Secrets table, Merged PRs table, code generation metrics) in collapsible <code>&lt;details&gt;</code> blocks. Executive summaries and key findings remain always visible, reducing noise for readers scanning long reports. (<a href="https://redirect.github.com/github/gh-aw/pull/20376">#20376</a>)</li> </ul> <hr /> <p>For complete details, see <a href="https://github.com/github/gh-aw/blob/main/CHANGELOG.md">CHANGELOG</a>.</p> <blockquote> <p>Generated by <a href="https://github.com/github/gh-aw/actions/runs/22915425873">Release</a></p> </blockquote> <!-- raw HTML omitted --> <hr /> <h2>What's Changed</h2> <ul> <li>Normalize report formatting: fix headers and add progressive disclosure in secrets and copilot PR reports by <a href="https://github.com/Copilot"><code>@​Copilot</code></a> in <a href="https://redirect.github.com/github/gh-aw/pull/20376">github/gh-aw#20376</a></li> <li>Add GITHUB_AW, GH_AW_PHASE, and GH_AW_VERSION env vars to agentic engine execution steps by <a href="https://github.com/Copilot"><code>@​Copilot</code></a> in <a href="https://redirect.github.com/github/gh-aw/pull/20382">github/gh-aw#20382</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/github/gh-aw/compare/v0.57.1...v0.57.2">https://github.com/github/gh-aw/compare/v0.57.1...v0.57.2</a></p> <h2>v0.57.1</h2> <h2>🌟 Release Highlights</h2> <p>This release focuses on reliability and developer experience — fixing schema validation gaps, hardening the upgrade flow, improving failure diagnostics, and expanding cross-repo workflow capabilities.</p> <h3>✨ What's New</h3> <ul> <li> <p><strong>Cross-repo <code>workflow_call</code> runtime imports</strong> — Workflows invoked via <code>workflow_call</code> from another repository now correctly check out the <em>callee's</em> <code>.md</code> files at runtime, eliminating <code>ERR_SYSTEM: Runtime import file not found</code> errors in cross-repo reuse scenarios. Includes a <code>secrets: inherit</code> support for reusable workflow call jobs. (<a href="https://redirect.github.com/github/gh-aw/pull/20301">#20301</a>)</p> </li> <li> <p><strong>Auto-upgrade on <code>gh aw upgrade</code></strong> — <code>gh aw upgrade</code> now automatically installs the latest extension version before compiling lock files, then relaunches the new binary transparently. Lock files no longer embed a stale version string after upgrading. (<a href="https://redirect.github.com/github/gh-aw/pull/20300">#20300</a>)</p> </li> <li> <p><strong>Richer failure issue diagnostics</strong> — Agent failure issues now include a universal copy-pasteable debug prompt for any coding agent (Copilot, Claude, Gemini, etc.), plus a new top-level <a href="https://raw.githubusercontent.com/github/gh-aw/main/debug.md"><code>debug.md</code></a> entry point. A new <code>report-failure-as-issue: false</code> frontmatter option lets you suppress failure issue creation per-workflow. Dedicated <strong>📦 Patch Size Exceeded</strong> sections appear when <code>max-patch-size</code> limits are hit. (<a href="https://redirect.github.com/github/gh-aw/pull/20266">#20266</a>, <a href="https://redirect.github.com/github/gh-aw/pull/20354">#20354</a>)</p> </li> <li> <p><strong>CLI flag consistency</strong> — Four commands gained missing flags to align with the rest of the CLI: <code>gh aw run --json</code>, <code>gh aw audit --repo</code>, <code>gh aw new --engine</code>, and <code>gh aw list --dir</code>. (<a href="https://redirect.github.com/github/gh-aw/pull/20272">#20272</a>)</p> </li> <li> <p><strong>Non-agent job concurrency defaults</strong> — Non-agent job concurrency groups now default <code>cancel-in-progress: false</code>, preventing accidental cancellation of setup or cleanup jobs during rapid pushes. (<a href="https://redirect.github.com/github/gh-aw/pull/20224">#20224</a>)</p> </li> </ul> <h3>🐛 Bug Fixes &amp; Improvements</h3> <ul> <li><strong><code>max-patch-size</code> schema fix</strong> — The <code>tools.repo-memory</code> JSON schema was missing the <code>max-patch-size</code> property, causing schema validation to reject valid frontmatter before compilation could process it. (<a href="https://redirect.github.com/github/gh-aw/pull/20309">#20309</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/github/gh-aw/commit/32b3a711a9ee97d38e3989c90af0385aff0066a7"><code>32b3a71</code></a> Add GITHUB_AW, GH_AW_PHASE, and GH_AW_VERSION env vars to agentic engine exec...</li> <li><a href="https://github.com/github/gh-aw/commit/e011bb65d7d6791764d368bd98bdee8b07d9cc78"><code>e011bb6</code></a> Normalize report formatting: fix headers and add progressive disclosure in se...</li> <li><a href="https://github.com/github/gh-aw/commit/36e5751f7c3d40ec9df8f44c0252b7bfabfc4dd6"><code>36e5751</code></a> Add dedicated error messages for max patch size failures in agent failure iss...</li> <li><a href="https://github.com/github/gh-aw/commit/16599bb99f0c6aca04c7b6f29f563bed5a5051ab"><code>16599bb</code></a> fix(daily-code-metrics): increase max-patch-size to prevent push_repo_memory ...</li> <li><a href="https://github.com/github/gh-aw/commit/aee512b1a4c638ed043831a5c6e8a733bac0b76d"><code>aee512b</code></a> docs: add self-contained and Copilot debugging prompts to authoring guides an...</li> <li><a href="https://github.com/github/gh-aw/commit/05848a926747f7304678b2b1c60555b3b158465f"><code>05848a9</code></a> Improve Docker validation error messages to be actionable (<a href="https://redirect.github.com/github/gh-aw/issues/20350">#20350</a>)</li> <li><a href="https://github.com/github/gh-aw/commit/61a7eb13bb33a799ad7b06df8a681bad4fb0a8f1"><code>61a7eb1</code></a> feat: fix runtime-import in cross-repo workflow_call by detecting callee repo...</li> <li><a href="https://github.com/github/gh-aw/commit/5ff8031daba4586f3113e8ca9cc4f58e7e3b8404"><code>5ff8031</code></a> docs: update glossary - daily scan 2026-03-10 (<a href="https://redirect.github.com/github/gh-aw/issues/20328">#20328</a>)</li> <li><a href="https://github.com/github/gh-aw/commit/297b343a1c44d63127955e266af33caa9054e2da"><code>297b343</code></a> refactor(cli): apply functional/immutability improvements to pkg/cli (<a href="https://redirect.github.com/github/gh-aw/issues/20323">#20323</a>)</li> <li><a href="https://github.com/github/gh-aw/commit/68a7f67da90b9b7a79c9fbe620593045385f7249"><code>68a7f67</code></a> Fix: <code>max-patch-size</code> missing from <code>tools.repo-memory</code> JSON schema (<a href="https://redirect.github.com/github/gh-aw/issues/20309">#20309</a>)</li> <li>Additional commits viewable in <a href="https://github.com/github/gh-aw/compare/f1073c5498ee46fec1530555a7c953445417c69b...32b3a711a9ee97d38e3989c90af0385aff0066a7">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github/gh-aw&package-manager=github_actions&previous-version=0.56.2&new-version=0.57.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 303f852 commit a4cec10

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/dependabot-major-review.lock.yml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)