Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 17 additions & 12 deletions .github/workflows/gh-aw-code-complexity-detector.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion .github/workflows/gh-aw-fragments/runtime-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,13 @@ steps:
set -euo pipefail
# AWF-friendly location: gh-aw scans /opt/hostedtoolcache/**/bin paths.
toolcache_bin="/opt/hostedtoolcache/gh-aw-tools/current/x64/bin"
uv_bin="${UV_PATH:-$(command -v uv || true)}"
if [ -z "$uv_bin" ]; then
echo "::error::uv was not installed or not discoverable after setup-uv" >&2
exit 1
fi
sudo mkdir -p "$toolcache_bin"
sudo ln -sf "$UV_PATH" "$toolcache_bin/uv"
sudo ln -sf "$uv_bin" "$toolcache_bin/uv"

- name: Configure Copilot CLI settings
shell: bash
Expand Down