fix: suppress uv hardlink warning with UV_LINK_MODE=copy#65
Merged
Conversation
When running as a GitHub Action, the uv cache and target .venv directory end up on different filesystems (container overlay vs host mount), causing uv to fail hardlinking and emit a noisy warning on every run. Setting UV_LINK_MODE=copy tells uv to use copy mode directly, suppressing the warning. Resolves the remaining part of #27. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: Zack Koppert <zkoppert@github.com>
jmeridth
approved these changes
Apr 9, 2026
This was referenced Apr 9, 2026
Merged
Merged
fix: suppress uv hardlink warning with UV_LINK_MODE=copy
github-community-projects/issue-metrics#732
Merged
Merged
Merged
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.
Pull Request
Proposed Changes
Resolves the remaining part of #27.
When running as a GitHub Action, the uv cache and target
.venvdirectory end up on different filesystems (container overlay vs host mount), causing uv to fail hardlinking and emit a noisy warning on every run:Adding
ENV UV_LINK_MODE=copyto the Dockerfile tells uv to use copy mode directly, suppressing the warning.Testing
make lint- all 5 linters pass, score 10.00/10make test- 269 tests pass, 99% coveragedocker build- image builds successfullyReadiness Checklist
Author/Contributor
make lintand fix any issues that you have introducedmake testand ensure you have test coverage for the lines you are introducing