This action is a drop-in replacement for the official actions/cache@v5 action, maintained by StepSecurity. It provides high-performance caching using S3, optimized for self-hosted or RunsOn runners.
It will automatically store your caches in a dedicated RunsOn S3 bucket that lives close to your self-hosted runners, ensuring you get at least 200MiB/s download and upload throughput when using caches in your workflows. The larger the cache, the faster the speed.
Also note that you no longer have any limit on the size of the cache. The bucket has a lifecycle rule to remove items older than 10 days.
If no S3 bucket is provided, it will also transparently switch to the default behaviour. This means you can use this action and switch between RunsOn runners and official GitHub runners with no change.
Two other actions are available in addition to the primary
cacheaction:
If using RunsOn, simply replace actions/cache@v5 with step-security/runs-on-cache@v5. All the official options are supported.
- - uses: actions/cache@v5
+ - uses: step-security/runs-on-cache@v5
with:
...Please refer to actions/cache for detailed usage.
If you want to use this in your own infrastructure, setup your AWS credentials with aws-actions/configure-aws-credentials, then:
- uses: aws-actions/configure-aws-credentials@v4
...
- uses: step-security/runs-on-cache@v5
with:
...
env:
RUNS_ON_S3_BUCKET_CACHE: name-of-your-bucketBe aware of S3 transfer costs if your runners are not in the same AWS region as your bucket.
RUNS_ON_S3_BUCKET_CACHE: if set, the action will use this bucket to store the cache.RUNS_ON_S3_BUCKET_ENDPOINT: if set, the action will use this endpoint to connect to the bucket. This is useful if you are using AWS's S3 transfer acceleration or a non-AWS S3-compatible service.RUNS_ON_RUNNER_NAME: when running on RunsOn, where this environment variable is non-empty, existing AWS credentials from the environment will be discarded. If you want to preserve existing environment variables, set this to the empty string"".RUNS_ON_S3_FORCE_PATH_STYLEorAWS_S3_FORCE_PATH_STYLE: if one of those environment variables equals the string"true", then the S3 client will be configured to force the path style.
Create a workflow .yml file in your repository's .github/workflows directory. An example workflow is available below. For more information, see the GitHub Help Documentation for Creating a workflow file.
If you are using this inside a container, a POSIX-compliant tar needs to be included and accessible from the execution path.
Note: actions/cache@v5 runs on Node.js 24 and requires a minimum Actions Runner version of 2.327.1.
If you are using a self-hosted Windows runner, GNU tar and zstd are required for Cross-OS caching to work. They are also recommended to be installed in general so the performance is on par with hosted Windows runners.
key- An explicit key for a cache entry. See creating a cache key.path- A list of files, directories, and wildcard patterns to cache and restore. See@actions/globfor supported patterns.restore-keys- An ordered multiline string listing the prefix-matched keys, that are used for restoring stale cache if no cache hit occurred for key.enableCrossOsArchive- An optional boolean when enabled, allows Windows runners to save or restore caches that can be restored or saved respectively on other platforms. Default:falsefail-on-cache-miss- Fail the workflow if cache entry is not found. Default:falselookup-only- If true, only checks if cache entry exists and skips download. Does not change save cache behavior. Default:false
SEGMENT_DOWNLOAD_TIMEOUT_MINS- Segment download timeout (in minutes, default10) to abort download of the segment if not completed in the defined number of minutes. Read more
cache-hit- A string value to indicate an exact match was found for the key.- If there's a cache hit, this will be 'true' or 'false' to indicate if there's an exact match for
key. - If there's a cache miss, this will be an empty string.
- If there's a cache hit, this will be 'true' or 'false' to indicate if there's an exact match for
See Skipping steps based on cache-hit for info on using this output
The cache is scoped to the key, version, and branch. The default branch cache is available to other branches.
See Matching a cache key for more info.
name: Caching Primes
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Cache Primes
id: cache-primes
uses: step-security/runs-on-cache@v5
with:
path: prime-numbers
key: ${{ runner.os }}-primes
- name: Generate Prime Numbers
if: steps.cache-primes.outputs.cache-hit != 'true'
run: /generate-primes.sh -d prime-numbers
- name: Use Prime Numbers
run: /primes.sh -d prime-numbersThe cache action provides a cache-hit output which is set to true when the cache is restored using the primary key and false when the cache is restored using restore-keys or no cache is restored.
name: Caching Primes
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Restore cached Primes
id: cache-primes-restore
uses: step-security/runs-on-cache/restore@v5
with:
path: |
path/to/dependencies
some/other/dependencies
key: ${{ runner.os }}-primes
.
. //intermediate workflow steps
.
- name: Save Primes
id: cache-primes-save
uses: step-security/runs-on-cache/save@v5
with:
path: |
path/to/dependencies
some/other/dependencies
key: ${{ steps.cache-primes-restore.outputs.cache-primary-key }}Note You must use the
cacheorrestoreaction in your workflow before you need to use the files that might be restored from the cache. If the providedkeymatches an existing cache, a new cache is not created and if the providedkeydoesn't match an existing cache, a new cache is automatically created provided the job completes successfully.
With the introduction of the restore and save actions, a lot of caching use cases can now be achieved. Please see the caching strategies document for understanding how you can use the actions strategically to achieve the desired goal.
A cache key can include any of the contexts, functions, literals, and operators supported by GitHub Actions.
For example, using the hashFiles function allows you to create a new cache when dependencies change.
- uses: step-security/runs-on-cache@v5
with:
path: |
path/to/dependencies
some/other/dependencies
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}Additionally, you can use arbitrary command output in a cache key, such as a date or software version:
# http://man7.org/linux/man-pages/man1/date.1.html
- name: Get Date
id: get-date
run: |
echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
shell: bash
- uses: step-security/runs-on-cache@v5
with:
path: path/to/dependencies
key: ${{ runner.os }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/lockfiles') }}See Using contexts to create cache keys
A repository can have up to 10GB of caches. Once the 10GB limit is reached, older caches will be evicted based on when the cache was last accessed. Caches that are not accessed within the last week will also be evicted.
Using the cache-hit output, subsequent steps (such as install or build) can be skipped when a cache hit occurs on the key. It is recommended to install missing/updated dependencies in case of a partial key match when the key is dependent on the hash of the package file.
Example:
steps:
- uses: actions/checkout@v7
- uses: step-security/runs-on-cache@v5
id: cache
with:
path: path/to/dependencies
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: /install.shNote The
iddefined instep-security/runs-on-cachemust match theidin theifstatement (i.e.steps.[ID].outputs.cache-hit)
Cache version is a hash generated for a combination of compression tool used (Gzip, Zstd, etc. based on the runner OS) and the path of directories being cached. If two caches have different versions, they are identified as unique caches while matching. This, for example, means that a cache created on a windows-latest runner can't be restored on ubuntu-latest as cache Versions are different.
Pro tip: The list caches API can be used to get the version of a cache. This can be helpful to troubleshoot cache miss due to version.
Example
The workflow will create 3 unique caches with same keys. Ubuntu and windows runners will use different compression technique and hence create two different caches. And `build-linux` will create two different caches as the `paths` are different.jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Cache Primes
id: cache-primes
uses: step-security/runs-on-cache@v5
with:
path: prime-numbers
key: primes
- name: Generate Prime Numbers
if: steps.cache-primes.outputs.cache-hit != 'true'
run: ./generate-primes.sh -d prime-numbers
- name: Cache Numbers
id: cache-numbers
uses: step-security/runs-on-cache@v5
with:
path: numbers
key: primes
- name: Generate Numbers
if: steps.cache-numbers.outputs.cache-hit != 'true'
run: ./generate-primes.sh -d numbers
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v7
- name: Cache Primes
id: cache-primes
uses: step-security/runs-on-cache@v5
with:
path: prime-numbers
key: primes
- name: Generate Prime Numbers
if: steps.cache-primes.outputs.cache-hit != 'true'
run: ./generate-primes -d prime-numbersThere are a number of community practices/workarounds to fulfill specific requirements. You may choose to use them if they suit your use case. Note these are not necessarily the only solution or even a recommended solution.
- Cache segment restore timeout
- Update a cache
- Use cache across feature branches
- Cross OS cache
- Force deletion of caches overriding default cache eviction policy
Please note that Windows environment variables (like %LocalAppData%) will NOT be expanded by this action. Instead, prefer using ~ in your paths which will expand to the HOME directory. For example, instead of %LocalAppData%, use ~\AppData\Local. For a list of supported default environment variables, see the Learn GitHub Actions: Variables page.
The scripts and documentation in this project are released under the MIT License
