Free GitHub-Actions Exam Braindumps (page: 6)

Page 6 of 19

You need to make a script to retrieve workflow run logs via the API.
Which is the correct API to download a workflow run log?

  1. POST /repos/:owner/:repo/actions/runs/:run_id
  2. GET /repos/:owner/:repo/actions/artifacts/logs
  3. GET /repos/:owner/:repo/actions/runs/:run_id/logs
  4. POST /repos/:owner/:repo/actions/runs/:run_id/logs

Answer(s): C

Explanation:

The GET /repos/:owner/:repo/actions/runs/:run_id/logs API endpoint is used to retrieve the logs of a specific workflow run identified by run_id. This is the correct method for downloading logs from a workflow run.



As a developer, you are optimizing a GitHub workflow that uses and produces many different files. You need to determine when to use caching versus workflow artifacts.
Which two statements are true? (Choose two.)

  1. Use caching when reusing files that change rarely between jobs or workflow runs.
  2. Use artifacts when referencing files produced by a job after a workflow has ended.
  3. Use caching to store cache entries for up to 30 days between accesses.
  4. Use artifacts to access the GitHub Package Registry and download a package for a workflow

Answer(s): A,B

Explanation:

Caching is ideal for files that change rarely, such as dependencies or build outputs, as it speeds up subsequent workflow runs by reusing previously cached files instead of re-downloading or rebuilding them.

Artifacts are used for persisting files produced during a job that need to be used in later jobs or after the workflow has ended, allowing them to be downloaded or referenced later.



As a developer, you are designing a workflow and need to communicate with the runner machine to set environment variables, output values used by other actions, add debug messages to the output logs, and other tasks.
Which of the following options should you use?

  1. environment variables
  2. workflow commands
  3. self-hosted runners
  4. enable debug logging
    E composite run step

Answer(s): B

Explanation:

Workflow commands are special commands that allow you to interact with the runner, set environment variables, output values, add debug messages, and perform other tasks within the workflow. These commands are used to modify the environment or influence the behavior of the GitHub Actions runner.



Which of the following is the best way for an enterprise to prevent certain marketplace actions from running?

  1. Create a list of the actions that are restricted from being used as an enterprise policy. Every other action can be run.
  2. It is not possible; if an action is in the marketplace, its use cannot be restricted.
  3. Create a list that is maintained as a . yml file in a . github repository specified in the enterprise.
    Only these actions can be run.
  4. Create a list of the actions that are allowed to run as an enterprise policy. Only these actions can be run.

Answer(s): D

Explanation:

The best way for an enterprise to control which GitHub Actions run is by creating a list of approved actions as an enterprise policy. This approach restricts workflows to only use the actions that are explicitly allowed, ensuring security and compliance within the organization.



Page 6 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