fix: use which uv in "Expose uv in workspace" step instead of step output reference#1385
Draft
Copilot wants to merge 2 commits into
Draft
fix: use which uv in "Expose uv in workspace" step instead of step output reference#1385Copilot wants to merge 2 commits into
which uv in "Expose uv in workspace" step instead of step output reference#1385Copilot wants to merge 2 commits into
Conversation
The `Expose uv in workspace` step in the runtime-setup.md fragment used
`${{ steps.setup-uv.outputs.uv-path }}` to find the uv binary path. When
the gh-aw compiler emits its own unconditional `Setup uv` step (for
workflows that use uvx MCP servers like code-duplication-detector and
code-complexity-detector), it omits `id: setup-uv`, making the step
output reference resolve to an empty string.
Fix: use `$(which uv)` instead, which works regardless of how uv was
installed. Regenerate all lock files accordingly.
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job run / agent
fix: use Jun 23, 2026
which uv in "Expose uv in workspace" step instead of step output reference
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.
The
run / agentjob in workflows using uvx-based MCP servers (e.g. Code Duplication Detector, Code Complexity Detector) was failing with:Root cause: When the
gh-awcompiler detects auvxMCP server, it emits an unconditionalSetup uvstep withoutid: setup-uv. TheExpose uv in workspacestep inruntime-setup.mdreferenced${{ steps.setup-uv.outputs.uv-path }}, which evaluates to empty string when the step has no matching ID — causingln -sf ""to fail.Fix:
runtime-setup.md: replaceenv: UV_PATH: ${{ steps.setup-uv.outputs.uv-path }}+ln -sf "$UV_PATH"withln -sf "$(which uv)"— robust regardless of which step installed uv or whether it carriesid: setup-uvmake compile