-
Notifications
You must be signed in to change notification settings - Fork 963
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to overwrite ACTIONS_CACHE_URL environment variable #3411
base: main
Are you sure you want to change the base?
Conversation
The runner script sets the `ACTIONS_CACHE_URL` using the value from the system connection. Currently, there's no way to override it. Some community users use custom cache solutions with self-hosted runners. They need to maintain a fork of `actions/runner` or `actions/toolkit`, and `actions/cache` to override the value in their solution. However it leads to significant maintenance work. If the runner script allows the `ACTIONS_CACHE_URL` value to be overridden by the `CUSTOM_ACTIONS_CACHE_URL` environment variable, it makes life a lot easier for the community, includes myself. An alternative solution could involve allowing the base URL value in `actions/toolkit` to be overridden. Several individuals have submitted similar PRs to this one actions/toolkit#1695, but they have not received adequate attention from the maintainers.
Hi @luketomlinson, @ericsciple, @TingluoHuang. Enabling the overwriting the |
Hi @igwejk, you've helped me get attention from the maintainers before in another PR. How did you do it? Enabling the overwriting the |
Hi @nebuk89, what's your opinion on adding this feature into the |
We would also like to see this merged. We use selfhosted runners and would like to keep the cache offline to reduce internet ingress/egress costs. |
Hey @enescakir, let me get back to you later on this. |
This would be really great for self-hosted runners especially also for GHEC customers. |
Hi @luketomlinson, @ericsciple, @TingluoHuang, @AllanGuigou. Enabling the overwriting the |
The runner script sets the
ACTIONS_CACHE_URL
using the value from the system connection. Currently, there's no way to override it.Some community users use custom cache solutions with self-hosted runners. They need to maintain a fork of
actions/runner
oractions/toolkit
, andactions/cache
to override the value in their solution. However it leads to significant maintenance work.If the runner script allows the
ACTIONS_CACHE_URL
value to be overridden by theCUSTOM_ACTIONS_CACHE_URL
environment variable, it makes life a lot easier for the community, includes myself.An alternative solution could involve allowing the base URL value in
actions/toolkit
to be overridden. Several individuals have submitted similar PRs to this one actions/toolkit#1695, but they have not received adequate attention from the maintainers.