cache
cache copied to clipboard
Cache dependencies and build outputs in GitHub Actions
In a workflow job, I mistakenly use an empty/null variable reference as part of a cache key: ``` - name: Restore webpack from cache id: staging-cache-webpack-restore uses: actions/cache/restore@v4 with: path:...
I manage my deployments using git tags. I noticed that none of my cache setups work in my action jobs. I have looked at the actions docs extensively, and I...
Thank you 🙇♀ for wanting to create an issue in this repository. Before you do, please ensure you are filing the issue in the right place. Issues should only be...
Our project unfortunately requires ~45–60 mins worth, i.e. 1–1.5 GB of cacheable output per run, which makes caching very important for us. We have separate runs (with incompatible caches) for...
Thank you 🙇♀ for wanting to create an issue in this repository. Before you do, please ensure you are filing the issue in the right place. Issues should only be...
## Description This PR fixes the re-evaluation of the key input for setting the `cache-hit` output in the restore implementation. ## Motivation and Context I noticed that the restore implementation...
# [WEB-FX]( https://www.webfx.com/tools/emoji-cheat-sheet/#47AD0_) 📧 - signup # How to create logging in session - check any availability draft messages directory - scan all available spam and replace as you upload...
The functionality of the cache action seems to be completely broken. Configurations attempted: - save/restore actions @v4 - save/restore actions @v3 - base cache action @v4 - base cache action...
* If you have found a security issue [please submit it here](https://hackerone.com/github) * If you have questions about writing workflows or action files, then please [visit the GitHub Community Forum's...
I declared those actions to cache dependencies for a Flutter app targeting iOS: ```yaml - name: Cache dependencies uses: actions/cache@v3 with: path: | ${{ env.FLUTTER_ROOT }}/.pub-cache **/.packages **/.flutter-plugins **/.flutter-plugin-dependencies **/.dart_tool/package_config.json...