What are the two ways to pass data between jobs? (Choose two.)
What are the two ways to pass data between jobs? (Choose two.)A . Use the copy action with restore parameter to restore the data from the cacheB . Use the copy action to save the data that should be passed in the artifacts folder.C . Use the copy action with...
Which of the following commands will set the $FOO environment variable within a script, so that it may be used in subsequent workflow job steps?
Which of the following commands will set the $FOO environment variable within a script, so that it may be used in subsequent workflow job steps?A . run: echo "::set-env name=FOO::bar"B . run: echo "FOO=bar" >> $GITHUB_ENVC . run: echo ${{ $FOO=bar }}D . run: export FOO=barView AnswerAnswer: B Explanation: The...
Which YAML snippet should you use to match the interface in this image?
As a developer, you want to run a workflow from the Actions tab in GitHub. Which YAML snippet should you use to match the interface in this image? A) B) C) D) A . Option AB . Option BC . Option CD . Option DView AnswerAnswer: C Explanation: The first...
To minimize management overhead and ensure the token is secure, which mechanisms should you use to store and access the token?
As a developer, you need to use GitHub Actions to deploy a microservice that requires runtime access to a secure token. This token is used by a variety of other microservices managed by different teams in different repos. To minimize management overhead and ensure the token is secure, which mechanisms...
When reviewing an action for use, what file defines its available inputs and outputs?
When reviewing an action for use, what file defines its available inputs and outputs?A . inputs.ymlB . config.jsonC . defaults.jsonD . workflow.ymlE . action.ymlView AnswerAnswer: E Explanation: The action.yml file defines the inputs and outputs for a GitHub Action. This file contains metadata about the action, including the required inputs...