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

I've found a strange bug with cache action. I know about cache being only available to the PR with the branch you are working on, and only when run is...

https://github.com/check-spelling/almalinux-wiki/actions/runs/5655212720 #### Annotations 1 warning [Check Spelling](https://github.com/check-spelling/almalinux-wiki/actions/runs/5655212720/job/15319851748#step:26:1063) Cache save failed. 1. Users shouldn't have to click the not particularly obvious link to determine which cache failed (especially given that the...

https://github.com/xenserver/status-report/actions/runs/7802115676 This workflow (you can check the workflow file in the job itself) is upgraded `actions/cache@v4`, but that does not stop the warning about @v3...: ```py Python3: Pre-Commit Suite Node.js...

We recently added Python 3.11 tests to [our repo](https://github.com/microsoft/torchgeo) and since then have noticed issues with caching Python dependencies. We have observed multiple instances where the macOS Python 3.11 tests...

I want to cache the pulled docker images. This is the YAML file I wrote: ``` - name: Change Docker image directory ownership run: sudo chown -R $USER:$USER /var/lib/docker/image -...

Situation: `actions/cache` is reused by a higher-level action that caches certain directory using it. This directory may or may not exist by the end of a workflow, and it not...

I am getting a warning: ``` Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved. ``` I am using several...

**Description and Context:** ~Node 16 reaches the [end of life soon on 11 Sep 2023](https://nodejs.org/en/blog/announcements/nodejs16-eol). This PR updates the default runtime to `node20` (Node 20).~ I have also bumped the...

The "What's New" [README section](https://github.com/actions/cache?tab=readme-ov-file#v4) mentions a `save-always` flag, but it's not documented in the [inputs list](https://github.com/actions/cache?tab=readme-ov-file#inputs) or in the [linked documentation page](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows).

## Description Change the workflow trigger event from `pull_request` to `pull_request_target` in the "cleanup caches by a branch" workflow example. ## Motivation and Context When triggered by the `pull_request` event,...