Free GitHub-Actions Exam Braindumps (page: 1)

Page 1 of 19

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?









Answer(s): C

Explanation:

The first image shows a workflow trigger with an option for the test suite, and the chosen YAML configuration matches this interface. Specifically, the test suite input is defined with type: choice and includes the option value: functional, which aligns with the visible UI elements in the first image.



How many jobs will result from the following matrix configuration?

  1. 3 jobs
  2. 4 jobs
  3. 5 jobs
  4. 6 jobs

Answer(s): D

Explanation:

The matrix configuration specifies two variables: color and animal. The color variable has 2 values (green and pink), and the animal variable has 2 values (owl and magpie). This would result in 4 more combinations (color: blue and animal: owl; color: pink and animal: magpie).



As a developer, which workflow steps should you perform to publish an image to the GitHub Container Registry? (Choose three.)

  1. Use the actions/setup-docker action
  2. Authenticate to the GitHub Container Registry.
  3. Build the container image.
  4. Push the image to the GitHub Container Registry
  5. Pull the image from the GitHub Container Registry.

Answer(s): A,B,D

Explanation:

A . Use the actions/setup-docker action
B . Authenticate to the GitHub Container Registry.
C . Build the container image.
D . Push the image to the GitHub Container Registry
E . Pull the image from the GitHub Container Registry.



As a developer, you have a 10-MB data set that is required in a specific workflow.
Which steps should you perform so the dataset is stored encrypted and can be decrypted during the workflow? (Choose three.)

  1. Encrypt the dataset.
  2. Leverage the actions/download-secret action in the workflow.
  3. Store the dataset in a GitHub encrypted secret.
  4. Store the encryption keys in a GitHub encrypted secret.
  5. Compress the dataset
  6. Commit the encrypted dataset to the same repository as the workflow
  7. Create a GitHub encrypted secret with the Large object option selected and upload the dataset.

Answer(s): A,C,D

Explanation:

First, the dataset should be encrypted before being stored. This ensures that the data is protected when stored in a repository.

The encrypted dataset can be stored in a GitHub secret, ensuring it is securely kept and not exposed publicly.
The encryption key needed to decrypt the dataset should also be stored in a GitHub secret to maintain security during the workflow, allowing access only when needed.



Page 1 of 19



Post your Comments and Discuss GitHub GitHub-Actions exam with other Community members:

Ian Hoskings commented on January 23, 2025
Hi I purchased the CKA exam and should have got the Github Actions exams as well. The Github exam is not downloading, can you advise please
UNITED KINGDOM
upvote