cache
cache copied to clipboard
Cache dependencies and build outputs in GitHub Actions
Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 8.5.0 to 9.1.0. Changelog Sourced from eslint-config-prettier's changelog. Version 9.1.0 (2023-12-02) Added: [unicorn/template-indent], (as a [special rule][unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu (@gurgunday)! Changed: All the [formatting rules...
Bumps [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) from 2.26.0 to 2.31.0. Release notes Sourced from eslint-plugin-import's releases. v2.31.0 Added support eslint v9 (#2996, thanks [@G-Rath] [@michaelfaith]) order: allow validating named imports (#3043, thanks [@manuth]) extensions:...
Bumps [xml2js](https://github.com/Leonidas-from-XIV/node-xml2js), [@azure/ms-rest-js](https://github.com/Azure/ms-rest-js) and [@azure/core-http](https://github.com/Azure/azure-sdk-for-js). These dependencies needed to be updated together. Updates `xml2js` from 0.4.23 to 0.5.0 Commits See full diff in compare view Updates `@azure/ms-rest-js` from 2.6.1 to...
Add a new section "Main functionalities" to describe the main functionalities provided by the `cache` action. * **README.md**: - Add a new section "Main functionalities" to describe the main functionalities...
If you look at the examples at https://github.com/actions/cache/blob/master/examples.md#node---yarn, they are using `set-output`, which is deprecated. See https://github.blog/changelog/2023-07-24-github-actions-update-on-save-state-and-set-output-commands/ These examples should be updated to use envvars.
On windows this action doesn't work under all circumstances. One such instance is the following github action(run): https://github.com/duckdb-faiss-ext/duckdb-faiss-ext/actions/runs/11274103433/job/31494248160 The environment is windows 2019, with rtools42 and using ccache as a...
I'm trying to cache files in a standard runner and then access them in a container, but the files aren't being restored as expected. I noticed the issue mentioned in...
#### Description There is a cache compatibility issue between [ARC](https://github.com/actions/actions-runner-controller/blob/master/docs/about-arc.md) (Action Runner Controller) runners and non-ARC runners in GitHub Actions. Caches created by ARC runners cannot be restored by non-ARC...
The `actions/cache/save@v4` action fails to create cache archive if there are "dead" circular symbolic links inside. The following error shows up in the output: ``` Warning: ELOOP: too many symbolic...
Hi there, I am currently setting up an action workflow where many small jobs compute bits of information that need to be passed on to other jobs in a directed...