https://github.com/actions/action-versions
https://github.com/actions/action-versions
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/actions/action-versions
- Owner: actions
- License: mit
- Created: 2023-09-18T00:42:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-27T05:04:43.000Z (over 1 year ago)
- Last Synced: 2025-01-29T22:23:49.409Z (over 1 year ago)
- Language: Shell
- Size: 148 KB
- Stars: 18
- Watchers: 2
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
- Security: SECURITY.md
- Support: SUPPORT.md
Awesome Lists containing this project
README
## GitHub First Party Actions Cache
This repository contains the code and scripts responsible for caching actions locally on a GitHub [Actions Runner](https://github.com/actions/runner).
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.
A configuration file exists for each repository (see `config/actions/`). The refs are pinned to specific commit SHAs.
### Which refs are included?
By default only `main` and version tags are included. For example: `v1` or `v2.0.1`
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.
### How to use this in the self-hosted runner?
Please read the doc @kenmuse has put together at: https://www.kenmuse.com/blog/building-github-actions-runner-images-with-an-action-archive-cache/
## 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
See the [contribution guide](../github/CONTRIBUTING.MD). Currently we are not taking requests for non first party actions to be added at this time.