fix(ci): use dynamic bun cache path for cross-platform support#17120
Merged
Hona merged 3 commits intoanomalyco:devfrom Mar 12, 2026
Merged
fix(ci): use dynamic bun cache path for cross-platform support#17120Hona merged 3 commits intoanomalyco:devfrom
Hona merged 3 commits intoanomalyco:devfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s Bun setup composite action to make Bun’s install-cache restoration reliable across CI environments (notably Windows runners) by deriving the cache directory from Bun itself rather than hardcoding a tilde-based path.
Changes:
- Moves Bun dependency caching to occur after Bun is installed.
- Adds a step that queries Bun’s resolved cache directory via
bun pm cacheand feeds it intoactions/cache.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
demostanis
pushed a commit
to demostanis/opencode
that referenced
this pull request
Mar 19, 2026
demostanis
pushed a commit
to demostanis/opencode
that referenced
this pull request
Mar 20, 2026
balcsida
pushed a commit
to balcsida/opencode
that referenced
this pull request
Mar 24, 2026
balcsida
pushed a commit
to balcsida/opencode
that referenced
this pull request
Apr 8, 2026
RobertWsp
pushed a commit
to RobertWsp/opencode
that referenced
this pull request
Apr 16, 2026
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
~/.bun/install/cache, but bun resolves the cache directory through a priority chain (BUN_INSTALL_CACHE_DIR>BUN_INSTALL>XDG_CACHE_HOME>USERPROFILE/HOME) — and~tilde expansion byactions/cacheisn't guaranteed to match bun's actual resolution on all runner environmentsbun pm cacheto get the real cache directory and feed that intoactions/cacheDetails
From the bun source (
src/install/PackageManager/PackageManagerDirectories.zig),fetchCacheDirectoryPathresolves the install cache through:cache_directory/install/cache//.bun/install/cache/C:\Users\Lukem(POSIX) /%USERPROFILE%(Windows)/.bun/install/cache/node_modules/.bun-cachebun pm cachereturns the exact resolved path, so using it as the source of truth eliminates any mismatch.