2023-09-18 01:13:38 +00:00
2023-09-25 11:31:05 -04:00
## GitHub First Party Actions Cache
2023-09-18 01:13:38 +00:00
2023-09-22 16:03:16 -04:00
This repository contains the code and scripts responsible for caching actions locally on a GitHub [Actions Runner ](https://github.com/actions/runner ).
2023-09-18 01:13:38 +00:00
2023-09-22 16:03:16 -04:00
This allows you to speedup actions execution without the cost of downloading actions during the course of your job during the `Setup Job` step. This repository only caches the most popular first party actions, to save disk space.
2023-09-18 01:13:38 +00:00
2023-09-22 16:03:16 -04:00
A configuration file exists for each repository (see `config/actions/` ). The refs are pinned to specific commit SHAs.
2023-09-18 01:13:38 +00:00
### Which refs are included?
2023-09-22 16:03:16 -04:00
By default only `main` and version tags are included. For example: `v1` or `v2.0.1`
2023-09-18 01:13:38 +00:00
Preview versions are intentionally excluded. For example: `v2-beta`
Optional args may be supplied to control which refs are included. See `script/add-action.sh --help` for more info.
2023-09-25 11:31:05 -04:00
## License
This project is licensed under the terms of the MIT open source license. Please refer to [MIT ](./LICENSE.txt ) for the full terms.
## Maintainers
[CODEOWNERS ](./CODEOWNERS )
## Contributing
2023-09-22 16:03:16 -04:00
See the [contribution guide ](../github/CONTRIBUTING.MD ). Currently we are not taking requests for non first party actions to be added at this time.