chore(workflows): upgrade gh-aw to v0.76.1#810
Merged
Conversation
- Refresh agentic-workflows dispatcher agent (URLs re-pinned v0.75.3 -> v0.76.1) - Recompile all workflow .lock.yml files with gh-aw v0.76.1 - Bump copilot-setup-steps.yml setup-cli action to v0.76.1 - Prune orphaned github/gh-aw/actions/setup@v0.68.1 entry from actions-lock.json Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
Summary
Refresh the agentic-workflows dispatcher agent and recompile all
.github/workflows/*.lock.ymlagainst gh-aw v0.76.1 (previously v0.75.3). Done by runninggh aw upgrade --no-fixfollowed bygh aw compile, plus pruning one orphaned entry fromactions-lock.json.What changed
.github/agents/agentic-workflows.agent.md— re-downloaded the canonical v0.76.1 dispatcher; all 17 prompt URLs re-pinnedv0.75.3 → v0.76.1. This is the centralised routing/dispatch agent that replaces the per-task agent files (create-agentic-workflow.agent.md,debug-agentic-workflow.agent.md, etc.) — none of those legacy files existed in this repo..github/workflows/copilot-setup-steps.yml—github/gh-aw-actions/setup-clibumpedv0.68.1 → v0.76.1so Copilot Cloud installs the matching CLI..github/workflows/*.lock.yml(16 workflow lock files) — recompiled with gh-aw v0.76.1. Notable upstream changes pulled in:github/gh-aw-actions/setupbumped to v0.76.1gh-aw-firewall/{agent,api-proxy,squid}images bumped to 0.25.55gh-aw-mcpgbumped to v0.3.19github-mcp-server:v1.0.4now pinned by digestnode:lts-alpinedigest pin refreshed.antigravityand.github/skillsRestore inline skills from activation artifactstepdetect-copilot-errorsstep renamed todetect-agent-errors(output names updated accordingly)claude-sonnet-4.6.github/aw/actions-lock.json— bumpedgithub/gh-aw-actions/setupto v0.76.1 and removed the now-orphanedgithub/gh-aw/actions/setup@v0.68.1entry (legacy repo path; no workflow referenced it after the setup-cli bump).Test plan
gh aw upgrade --no-fixran clean and reportedUpgrade complete.python3 -c "import json; json.load(open('.github/aw/actions-lock.json'))"confirms the lock file is valid JSON after pruning.grep -rn "v0.68.1\|github/gh-aw/actions/setup" .github/returns no matches.grep -c "blob/v0.76.1" .github/agents/agentic-workflows.agent.mdreturns 17, andgrep -c "blob/v0.75.3\|blob/main/" …returns 0.cargovalidation isn't required for this PR.