cache
cache copied to clipboard
Cache dependencies and build outputs in GitHub Actions
in a private repo, we get timeouts trying to restore cache but **only on windows and *only* if run with a non-standard larger runner.** - linux - standard runner (`linux-latest`)...
In the workflow below, I try to look up the exact key, and if it fails, I want it to look up the partial key as described in `restore-keys`. However,...
## Description Add an example of caching pnpm, from [the last version in the pnpm readme](https://github.com/pnpm/action-setup/pull/131) ## Motivation and Context 1. There is no current example for pnpm 2. The...
# What's going on We've been experiencing this issue that's inconsistent but has been happening very frequently. | Frequent failing workflow | Less frequent failing workflow | | - |...
I use actions/cache@v3 in a pre-commit check workflow on self-hosted runners (summerwind/actions-runner image). Intermittently (e.g. yesterday and today) the Post Setup steps are extremely slow. Each step takes 2 min...
If the target path doesn't match the source path, restore reports "Cache not found for input keys"
Hey there, I've been trying to use the `save`/`restore` actions from two separate jobs, and after six hours of head-scratching, worked out what's going on. If the path provided to...
Successfully set up opam dependency caching, sharing the config in case it is useful to someone else
When trying to restore the "cache-toolchains-atf-**d64**" the Cache action actually restores "cache-toolchains-atf-**d64x**" (with '**x**' at the end): > Run actions/cache/restore@v3 > with: > path: /work/atf_toolchains > key: cache-toolchains-atf-**d64** > enableCrossOsArchive:...
## Description I've updated the constants to expect cachePath to exist, and saved cachePath as the value set in the path input, unchanged. This is so it can be properly...
Hello! Say we have a folder `a` which contains symlinks to files in folder `b`, and we want to cache folder `a`, but not folder `b`, except that the symbolically...