Skip to content

chore(deps): update github/gh-aw action to v0.68.3#8109

Open
release-workflows[bot] wants to merge 1 commit intomainfrom
renovate/github-gh-aw-0.x
Open

chore(deps): update github/gh-aw action to v0.68.3#8109
release-workflows[bot] wants to merge 1 commit intomainfrom
renovate/github-gh-aw-0.x

Conversation

@release-workflows
Copy link
Copy Markdown
Contributor

@release-workflows release-workflows bot commented Feb 13, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
github/gh-aw action minor v0.43.18v0.68.3

Release Notes

github/gh-aw (github/gh-aw)

v0.68.3

Compare Source

🌟 Release Highlights

This release delivers a major overhaul of push_signed_commits.cjs for edge-case reliability, significant improvements to shared workflow imports, smarter AI model error handling, and a wave of community-driven fixes.

✨ What's New
  • Model-not-supported detection — When a model is unavailable or not supported by your Copilot plan, the workflow now stops retrying and surfaces a clear, actionable error in the failure report rather than spinning indefinitely. (#​26229)
  • checkout field in shared imports — Shared importable workflows now support a checkout field, giving you control over which ref is checked out when importing a shared workflow. (#​26292)
  • env field in shared imports — You can now pass environment variables via env: in shared import blocks, eliminating the need for workarounds when shared workflows require custom env context. (#​26113)
  • Time Between Turns (TBT) metricgh aw audit and gh aw logs now report Time Between Turns, a key indicator of whether LLM prompt caching is effective for your workflows. (#​26321)
  • OTEL token breakdown — Conclusion spans now include token category breakdowns as attributes, enabling richer cost analysis in your observability dashboards. (#​26121)
  • API consumption charts as inline images — API consumption reports now render charts as inline Markdown images for instant visibility without requiring external image hosting. (#​26150)
🐛 Bug Fixes & Improvements

push_signed_commits.cjs — five targeted fixes:

  • File content is now read from commit objects (not the working tree), preventing stale-file bugs in agent-driven commits. (#​26287)
  • Copy/rename detection and C-quoted filenames are now handled correctly. (#​26277)
  • Non-100644 file modes (executables, symlinks) are detected and handled gracefully. (#​26259)
  • Commit ordering uses --topo-order and merge commits are handled with a git push fallback. (#​26306)
  • Submodule entries now fall back to a plain git push instead of erroring. (#​26298)

Other notable fixes:

  • on.github-token propagated to activation job — Cross-org workflow_call setups no longer fail because the GitHub token was missing from checkout and hash-check steps. (#​26137)
  • copilot-driver --resume auth recovery — Authentication failures during --continue/--resume are now handled instead of crashing the driver. (#​26146)
  • add_comment gains reply_to_id — The reply_to_id parameter is now documented in the MCP tool schema so agents reliably pass it when threading replies. (#​26288)
  • safe-outputs.actions tools exposed — Custom action tools defined in safe-outputs.actions are now included in the agent's MCP toolset. (#​26291)
  • engine.max-turns preserved through shared imports — The max-turns setting no longer silently drops when the engine config is sourced from a shared import. (#​26122)
  • Docker no longer required for gh aw compile --validate — Validation now skips Docker image checks when Docker is unavailable; opt in with --validate-images when needed. (#​26074)
  • GH_HOST env var used for GH CLI callsgh repo view and gh pr create now respect GH_HOST, fixing failures in GHES and cross-org contexts. (#​26311)
  • resolveIssueNumber strips stray quotes — Item numbers wrapped in quotes no longer cause resolution failures. (#​26114)
  • --safe-update renamed to --approve — The flag name now more clearly conveys its intent. (#​26160)
📚 Documentation
🌍 Community Contributions
A huge thank you to the community members who reported issues that were resolved in this release!
@arthurfvives
@bbonafed
@corygehr
@susmahad
@tadelesh
@wtgodbe
@yskopets

For complete details, see CHANGELOG.

Generated by Release · ● 4.1M


What's Changed

Full Changelog: github/gh-aw@v0.68.2...v0.68.3

v0.68.2

Compare Source

🌟 Release Highlights

This release delivers a focused wave of reliability improvements: compiler fixes that were blocking real workflows, expanded strict-mode flexibility, deeper temporary ID support, and a new integrity-reactions feature for fine-grained trust control. A huge batch of community-reported bugs across Copilot engine, safe-outputs, cross-org workflows, and MCP Gateway are now resolved.

✨ What's New
  • Reaction-based integrity control — The new integrity-reactions feature flag (requires MCPG ≥ v0.2.18, now bundled as v0.2.19) lets maintainers promote or demote tool-use integrity via 👍/❤️ and 👎/😕 GitHub reactions in proxy mode. Configurable endorsement and disapproval reaction sets with sensible defaults. Learn more

  • Temporary ID resolution now reaches further#temporary_id references are now resolved inside dispatch_workflow input values, update_issue/add_comment targets, and git am patch content — closing three long-standing gaps that required manual workarounds.

  • Strict mode secrets unlocked — Strict mode now permits secrets.* in step-level with: bindings for action steps in pre-agent custom steps, and in step env: bindings — giving workflows a secure path to external secret managers without disabling strict mode entirely.

  • slash_command event scoping — A new scope option lets workflows restrict which event types (issue comment, PR comment, etc.) trigger slash commands, reducing noise from unintended contexts.

  • assign_to_agent multi-platform support — Copilot can now be assigned to the same issue multiple times when each assignment targets a different pull_request_repo (e.g., separate iOS and Android repositories), enabling true cross-platform agentic workflows.

  • workflows: write auto-inferred — The compiler now automatically infers the workflows: write permission when a GitHub App token's allowed-files targets .github/workflows/, eliminating a confusing manual step.

🐛 Bug Fixes & Improvements
  • create_issue rate-limit resilience — Added retry with jitter to the create_issue safe-output handler, preventing HTTP 403 failures when multiple daily workflows complete simultaneously and burst the API rate limit.

  • create_pull_request ENOBUFS crash — Fixed a spawnSync buffer overflow that caused create_pull_request to fail on large diffs; the safe-output handler no longer crashes on oversized payloads.

  • create_pull_request_review_comment tool not found — Resolved a runtime registration issue where the create_pull_request_review_comment safe-output tool was declared but not discoverable at runtime.

  • Copilot engine workflows restored — Fixed two distinct failures introduced in v0.67.2–v0.67.4 that broke Copilot-engine workflows; plus resolved silent exit code 1 errors in the compiled Copilot CLI.

  • Compiler: --allow-domains quoting fixed — The compiler no longer single-quotes --allow-domains values, which was breaking $\{\{ }} GitHub Actions expressions and causing HTTP 422 errors on workflow dispatch.

  • inputs.* expressions in workflow_call — Expressions using inputs.* in prompt bodies are now properly resolved when a workflow is invoked via workflow_call.

  • OIDC env vars forwarded to MCP Gateway — The compiler now forwards ACTIONS_ID_TOKEN_REQUEST_URL and related OIDC env vars to the docker run command for the MCP Gateway, enabling OIDC-based authentication flows.

  • MCP servers on GitHub Enterprise Server — Improved documentation and policy guidance for organizations where the "MCP servers in Copilot" policy is not visible in GHE settings.

  • SARIF upload permissions — Fixed Resource not accessible by integration errors during SARIF upload by correctly provisioning the required security-events: write permission.

  • Cross-org workflow_call — Resolved failures in resolve_host_repo, checkout, and hash checks when invoking workflows across organization boundaries.

  • push_repo_memory bot-comment guard — Fixed a bug where the push_repo_memory job ran even when the workflow was triggered by a bot comment that skipped pre_activation.

  • ParseWorkflow ~18% faster — Eliminated a JSON round-trip in schema validation and optimized node traversal, reducing workflow parse time by ~18% with ~22% fewer allocations.

🌍 Community Contributions
A huge thank you to the community members who reported issues that were resolved in this release!
@apenab
@bbonafed
@benvillalobos
@bryanchen-d
@camposbrunocampos
@corygehr
@devantler
@JanKrivanek
@johnpreed
@kbreit-insight
@neta-vega
@susmahad
@theletterf
@wtgodbe
@yskopets

For complete details, see CHANGELOG.

Generated by Release · ● 1.6M


What's Changed

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from c42b1d6 to 2e684f8 Compare February 13, 2026 20:11
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.43.20 chore(deps): update github/gh-aw action to v0.43.21 Feb 13, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 2e684f8 to ee9d01e Compare February 13, 2026 22:10
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.43.21 chore(deps): update github/gh-aw action to v0.43.22 Feb 13, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from ee9d01e to ecda65f Compare February 14, 2026 02:59
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.43.22 chore(deps): update github/gh-aw action to v0.43.23 Feb 14, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from ecda65f to 0ab8e8b Compare February 14, 2026 22:06
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.43.23 chore(deps): update github/gh-aw action to v0.44.0 Feb 14, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 0ab8e8b to a9fbf11 Compare February 16, 2026 01:36
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.44.0 chore(deps): update github/gh-aw action to v0.45.0 Feb 16, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from a9fbf11 to 4a778e8 Compare February 16, 2026 22:08
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.45.0 chore(deps): update github/gh-aw action to v0.45.1 Feb 16, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 4a778e8 to e615234 Compare February 17, 2026 01:36
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.45.1 chore(deps): update github/gh-aw action to v0.45.2 Feb 17, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from e615234 to 19e5e59 Compare February 17, 2026 04:39
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.45.2 chore(deps): update github/gh-aw action to v0.45.3 Feb 17, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 19e5e59 to 7135245 Compare February 17, 2026 08:17
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.45.3 chore(deps): update github/gh-aw action to v0.45.4 Feb 17, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 7135245 to abab8e0 Compare February 17, 2026 18:21
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.45.4 chore(deps): update github/gh-aw action to v0.45.5 Feb 17, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from abab8e0 to be0c80f Compare February 17, 2026 23:09
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.45.5 chore(deps): update github/gh-aw action to v0.45.6 Feb 17, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from be0c80f to 62f4b32 Compare February 18, 2026 01:36
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.45.6 chore(deps): update github/gh-aw action to v0.45.7 Feb 18, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 62f4b32 to 60ef078 Compare February 18, 2026 06:26
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.45.7 chore(deps): update github/gh-aw action to v0.46.0 Feb 18, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 60ef078 to d35bed6 Compare February 18, 2026 20:14
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.46.0 chore(deps): update github/gh-aw action to v0.46.1 Feb 18, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from d35bed6 to d6b5920 Compare February 19, 2026 04:39
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.46.1 chore(deps): update github/gh-aw action to v0.46.2 Feb 19, 2026
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.47.1 chore(deps): update github/gh-aw action to v0.47.2 Feb 20, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from b2b4fe3 to be66276 Compare February 20, 2026 16:13
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.47.2 chore(deps): update github/gh-aw action to v0.47.3 Feb 20, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from be66276 to 7bb6e08 Compare February 20, 2026 21:06
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.47.3 chore(deps): update github/gh-aw action to v0.47.4 Feb 20, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 7bb6e08 to d345213 Compare February 21, 2026 00:27
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.47.4 chore(deps): update github/gh-aw action to v0.47.5 Feb 21, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from d345213 to cddd18c Compare February 21, 2026 02:57
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.47.5 chore(deps): update github/gh-aw action to v0.47.6 Feb 21, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from cddd18c to 314ac7c Compare February 21, 2026 03:48
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.47.6 chore(deps): update github/gh-aw action to v0.48.0 Feb 21, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 314ac7c to d8f76f8 Compare February 21, 2026 05:21
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.48.0 chore(deps): update github/gh-aw action to v0.48.1 Feb 21, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from d8f76f8 to bac0698 Compare February 21, 2026 18:09
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.48.1 chore(deps): update github/gh-aw action to v0.48.2 Feb 21, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from bac0698 to 3b1e802 Compare February 21, 2026 20:06
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.48.2 chore(deps): update github/gh-aw action to v0.48.3 Feb 21, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 3b1e802 to 84850c5 Compare February 22, 2026 06:18
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.48.3 chore(deps): update github/gh-aw action to v0.48.4 Feb 22, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 84850c5 to 63dd3c5 Compare February 22, 2026 16:08
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.48.4 chore(deps): update github/gh-aw action to v0.49.0 Feb 22, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 63dd3c5 to 8c30f9c Compare February 23, 2026 00:29
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.49.0 chore(deps): update github/gh-aw action to v0.49.1 Feb 23, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from 8c30f9c to e46061e Compare February 23, 2026 03:05
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.49.1 chore(deps): update github/gh-aw action to v0.49.2 Feb 23, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from e46061e to b2300f9 Compare February 23, 2026 07:27
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.49.2 chore(deps): update github/gh-aw action to v0.49.3 Feb 23, 2026
@release-workflows release-workflows bot force-pushed the renovate/github-gh-aw-0.x branch from b2300f9 to dcac731 Compare February 23, 2026 12:16
@release-workflows release-workflows bot changed the title chore(deps): update github/gh-aw action to v0.49.3 chore(deps): update github/gh-aw action to v0.49.4 Feb 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants