Conversation
f9ef7bc to
d78e087
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes the Sui binary caching mechanism in GitHub Actions by correcting the installation path used for caching. The previous path (~/.suiup/bin) no longer exists after changes in #20533, causing cache validation errors. The fix updates the cache path to the actual installation location (~/.local/bin/sui) and removes the obsolete path from the PATH environment variable.
Key Changes:
- Updated cache path from
~/.suiup/binto~/.local/bin/suito match the actual installation location - Removed
~/.suiup/binfrom the PATH environment variable since it's no longer used
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
kalverra
approved these changes
Dec 5, 2025
|
FelixFan1992
approved these changes
Dec 5, 2025
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.





Changes
Motivation
There were installation issues which were fixed in #20533, but it broke the SUI binary cache.
For example: https://github.com/smartcontractkit/chainlink/actions/runs/19968771608/job/57267681721#step:38:3
Testing