cache
cache copied to clipboard
Cache dependencies and build outputs in GitHub Actions
related to https://github.com/github/docs/pull/18524 set `cache-hit` to `false` when there is no cache matched
We are intermittently seeing our cache restoration hang when its completion is over 90%. It can hang for over 10 minutes, so we've set a timeout of 10 minutes to...
First of all, thanks to the maintainers and contributors who keep this project up, which helps make CI cache handling simple! 🥳 ## Use case I have a build matrix...
We are using action/cache for gradle builds and below is the action snippet defined in yaml. - name: Setup Gradle Dependencies Cache uses: actions/cache@v2 with: path: ~/.gradle/caches key: ${{ runner.os...
I'm seeing a problem with child branching matching their parent branches during the cache check. I checked the caching docs for cache scopes and saw it says not only the...
I have a workflow that is triggered on release ``` on: release: types: [published] ``` And I set ref to main branch explicitly for checkout action, because cache with tags'...
There are certain solutions which allow to use cache for some interesting use cases (e.g. #171). Adding a section to highlight such use cases and potential good way to solve...
Add to Readme the best-known-method for making sure you save your cache information It would be worth spelling out in the README the details mentioned here: https://github.com/actions/cache/issues/342#issuecomment-673371329 for how to...
hi! I have a cache created on a non-default branch, all works fine except when the workflow is run on **a tag**, the cache isn't hit when it's not a...
I'm trying to cache C shared libraries, that live in usr/local/lib. Writing the cache is working, but reading from it fails because the action is not able to untar the...