Workflows can reference actions in:
(Each correct answer presents a complete solution. Choose three.)
Any public repository.
The same repository as your workflow file.
GitHub Packages.
An enterprise marketplace.
A published Docker container image on Docker Hub.
As mentioned in the answer to Question no. 66, GitHub Actions workflows can reference actions from a variety of sources:
Any Public Repository:
Option A is correct. Actions can be sourced from any public GitHub repository.
The Same Repository as Your Workflow File:
Option B is correct. Actions within the same repository as the workflow file can be referenced directly.
A Published Docker Container Image on Docker Hub:
Option E is correct. Workflows can also use actions provided as Docker container images from Docker Hub.
Incorrect Options:
Option C and D are not relevant for directly referencing actions in workflows.
Submit