The quiz simulates GitHub Actions Certification questions, and facilitates aspirants to practice before the actual certification exam. You can study GitHub Actions here before taking this quiz.
Total questions: 30
Time: 50 minutes
Passing score: 70%
START QUIZ
#1. Which of the following GitHub Actions syntax is used to run multiple commands in a single step?
#2. How can you cache dependencies to speed up workflow execution?
#3. What does the `matrix` keyword do in a GitHub Actions workflow?
#4. Which of the following can be used to limit the number of concurrent jobs running in a GitHub Actions workflow?
#5. What is the default timeout for a GitHub Actions job?
#6. How can you override an organization-level GitHub Secret `API_KEY` with a different value when working within a repository? (Select two.)
Select all that apply:
#7. What components can be reused within a GitHub Organization? (Select four.)
Select all that apply:
#8. Which of the following default environment variables contains the full name (e.g `octocat/hello-world`) of the repository where the workflow is running?
#9. In a workflow that has multiple jobs, all running on GitHub-hosted runners, is it true that all jobs are guaranteed to run on the same runner machine?
#10. What's the maximum number of reusable workflows you can call from a single workflow file?
#11. What is a self-hosted runner?
#12. Which of the following is a correct statement about GitHub Workflows and Actions?
#13. On which commit and branch do scheduled workflows run in GitHub Actions?
#14. Which of the following are default environment variables in GitHub Actions? (Select three.)
Select all that apply:
#15. Your organization defines a secret `SomeSecret`, however when you reference that secret in a workflow using `${{ secrets.SomeSecret }}` it provides a different value than expected. What may be the reason for that?
#16. Which is a correct way to print a debug message?
#17. How can organizations which are using GitHub Enterprise Server enable automatic syncing of third-party GitHub Actions hosted on GitHub.com to their GitHub Enterprise Server instance?
#18. Where can you find network connectivity logs for a GitHub self-hosted-runner?
#19. How can you validate that your GitHub self-hosted-runner can access all required GitHub services?
#20. Which is the correct way of triggering a job only if configuration variable `MY_VAR` has the value of `MY_VALUE`?
#21. How can you use the GitHub API to download workflow run logs?
#22. How can you use the GitHub API to create or update a repository secret?
#23. What are the three types of Actions?
#24. Is this statement true? `Docker container actions are usually slower than JavaScript actions`
#25. When creating a custom Github Action you have to store the source code in `.github/workflows` directory?
#26. When creating custom Github Actions - in what file all the action `metadata` has to be defined?
#27. A workflow was initially run on `commit A` and failed. You fixed the workflow with the subsequent `commit B`. When you re-run that workflow, it will run with code from which commit?
#28. How can you require manual approvals by a maintainer if the workflow run is targeting the `production` environment?
#29. Which is true about environments?
#30. When using Github Actions to access resources in one of the cloud providers (such as AWS, Azure or GCP) the safest and recommended way to authenticate is?
Finish
Post Views: 7