cache icon indicating copy to clipboard operation
cache copied to clipboard

Cache dependencies and build outputs in GitHub Actions

Results 377 cache issues
Sort by recently updated
recently updated
newest added

The example @ https://github.com/actions/cache/blob/6f1f1e10f3bad9846e298e7670d605f5674ddd17/examples.md#using-pip-to-get-cache-location does not work with Windows runners, as they use PowerShell by default. In particular, the following part: ```yaml - name: Get pip cache dir id: pip-cache...

I've been using something as simple as: ```yaml - name: Restore Rust id: restore uses: actions/cache/restore@v3 with: path: ~/.rustup key: rust ``` But for some reason, if the cache doesn't...

documentation

The documentation says that caches are scoped to branches. Suppose I am building from a tag? The tag might be at the tip of one or more branches, or it...

I have setup the save always to true such that the cache step should always fail even if one of the tasks fail. See screenshots below: Save always set to...

bug

Could a `retention-days` key be added to this repository similar to what https://github.com/actions/upload-artifact has. This could allow the cache to, essentially, be cleaned up more frequently. This would have two...

The README says: > **Note** `cache-hit` will only be set to `true` when a cache hit occurs for the exact `key` match. For a partial key match via `restore-keys` or...

Hi! I noticed our github cache action has begun to take a considerably much longer time; what tools are there available to try and investigate this? For instance here are...

## Description As highlighted under [Finding Packages section](https://pip.pypa.io/en/stable/cli/pip_install/#finding-packages) of [PyPA pip documentation website](https://pip.pypa.io/en/stable/cli/pip_install/), the pip's caching documentation has moved to this page here: https://pip.pypa.io/en/stable/topics/caching/ . ## Motivation and Context The...

## Description Add https://github.com/asdf-vm example. ## Motivation and Context I came to this page looking for it and it wasn't here yet 😆 ## How Has This Been Tested? I've...

My interpretation of the `fail-on-cache-miss` feature on the `actions/cache` and `actions/cache/restore` actions is that the workflow should stop and be considered a fail if there is no cache found with...