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

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...

The same problem as reported years ago on https://github.com/actions/cache/issues/731 is back. ```log Wed, 06 Sep 2023 14:05:43 GMT | Run actions/cache@v3 Wed, 06 Sep 2023 14:05:43 GMT | with: Wed,...

I'm aware of the [cache scopes](https://github.com/actions/cache#cache-scopes), yet this simple workflow: ![image](https://github.com/actions/cache/assets/63328889/88d59485-c706-4783-a61a-f4f5aa075658) Causes the cache to consistently miss & create a new cache for each run: ![image](https://github.com/actions/cache/assets/63328889/628f1e3b-c5fa-467f-a798-836851a10928) This _might_ be because...

We have a tool that run hundreds of concurrent tests in GitHub. Some of the jobs fail when restoring cache due to 429 from the cache service: > Warning: Failed...

This is the workflow I caught red-handed: https://github.com/andreasabel/hasktorch/actions/runs/6536754694/job/17749144021 1. Version: `actions/cache@v3` SHA:704facf57e6136b1bc63b828d79edcd491f0ee84 https://github.com/andreasabel/hasktorch/actions/runs/6536754694/job/17749144021 2. Cache restored from `restore-key` https://github.com/andreasabel/hasktorch/actions/runs/6536754694/job/17749144021#step:7:4 ``` Run actions/cache/restore@v3 with: path: ~/.cabal/store key: macOS-cabal-3.6.2.0-ghc-9.2.8-plan-813f23bfbcb4c800c8178d743c3df6e501ec38580a651c180dcd99b0abc9319d restore-keys: macOS-cabal-3.6.2.0-ghc-9.2.8- ......

## Description The PR add the following use case to example sections: ``` ## Common use cases ### Restore-only caches ### Automatically detect cached paths ``` ## Motivation and Context...

## Description Add an example of how to get the most out of Rust incremental builds. Also, changes to rust-toolchain.toml should invalidate the cache. ## Motivation and Context Our Rust...

I have a cache not saved on Windows-2019 runner: https://github.com/Geode-solutions/OpenGeode/actions/runs/4755965248/jobs/8450873300#step:13:6 This looks like #1092 but the PATH is not modified in the workflow. ``` Post job cleanup. "C:\Program Files\Git\usr\bin\tar.exe" --posix...

## Description This PR adds an example for caching the `resources` folder in Hugo builds. ## Motivation and Context Caching the `resources` folder greatly reduces the building time in Hugo,...

📢 Cache management is now much simpler with ability to list cache metadata and delete cache for a repo. Additionally, Org admins can view usage across repos. [Managing caches](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#managing-caches) [Managing...