curlewlabs-com/Runner Local Cache
Local-disk cache for self-hosted runners — drop-in replacement for actions/cache, less network IO.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| path | Path to restore the cached directory to. | yes | — |
| key | Exact cache key to look up. | yes | — |
| restore-keys | Newline-separated list of key prefixes for fallback matching. The most recently modified matching entry wins. | no | "" |
| cache-dir | Absolute path to local directory where cache entries are stored. Must be persistent and shared across all runners on the same machine (e.g. a path outside the per-workspace _work directory). Tilde expansion is not supported. | yes | — |
Outputs
| name | description |
|---|---|
| cache-hit | 'true' if an exact key match was found, 'false' otherwise. |
| cache-matched-key | The key that was actually restored. Equal to 'key' on an exact hit; usually the matched raw key on a prefix hit; empty on a miss. |