The cache key for the GitHub Actions cache of emsdk is hardcoded:
https://github.com/mymindstorm/setup-emsdk/blob/ca0cef33e53bf9149891246a1b13ef3dbd498ca5/src/main.ts#L28
This prevents multiple CI jobs or workflows from using this action and caching the results.
Can this key include the workflow name and job? Alternatively, can overriding it be exposed as an action parameter?
The code samples in the README seem to indicate that users should use actions/cache on their own. Why does this action also invoke @actions/cache?
The cache key for the GitHub Actions cache of emsdk is hardcoded:
https://github.com/mymindstorm/setup-emsdk/blob/ca0cef33e53bf9149891246a1b13ef3dbd498ca5/src/main.ts#L28
This prevents multiple CI jobs or workflows from using this action and caching the results.
Can this key include the workflow name and job? Alternatively, can overriding it be exposed as an action parameter?
The code samples in the README seem to indicate that users should use
actions/cacheon their own. Why does this action also invoke@actions/cache?