Replies: 1 comment 1 reply
-
@hfhbd Actions cache is primarily targeted for speeding up workflow runs. I would suggest using Packages feature if you have needs to use build artifacts outside of Actions realm. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Select Topic Area
Product Feedback
Body
The Action Cache is a very nice feature to speed up build running on GitHub runners using build caching features from the build system, eg https://docs.gradle.org/current/userguide/build_cache.html
But the cache is currently only available for GitHub runners due to internal access. It would be very handy to expose the build cache as a (write-able or) read-only API too.
This allows developers to reuse the cache on local environments reducing running the build due to cached build results.
This also affects GitHub Codespaces which does not reuse the action cache at the moment, reducing costs.
I think the current APIs don't require a change, you only need to make them public: nektos/act#329
Beta Was this translation helpful? Give feedback.
All reactions