You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, all files are packaged as tar.gz or zip archives within an image layer. To retrieve action information - such as type (e.g., node, docker), inputs, outputs, ... the only method is to download the entire layer, extract it, and parse the action.yml file. This process is slow and inefficient because its involves unnecessary steps and waste of resources.
To address this, I propose storing the action.yml content within the OCI image config section, using the mediaType=application/vnd.github.actions.manifest.v1+yaml. This approach would enable development tools to easily discover action metadata without the need to download the entire image, improving efficiency and resource utilization.
The text was updated successfully, but these errors were encountered:
Currently, all files are packaged as tar.gz or zip archives within an image layer. To retrieve action information - such as type (e.g., node, docker), inputs, outputs, ... the only method is to download the entire layer, extract it, and parse the action.yml file. This process is slow and inefficient because its involves unnecessary steps and waste of resources.
To address this, I propose storing the
action.yml
content within the OCI imageconfig
section, using themediaType=application/vnd.github.actions.manifest.v1+yaml
. This approach would enable development tools to easily discover action metadata without the need to download the entire image, improving efficiency and resource utilization.The text was updated successfully, but these errors were encountered: