What should you do to prevent the storage limit from being reached?
You are reaching your organization's storage limit for GitHub artifacts and packages. What should you do to prevent the storage limit from being reached?A . via the .github repository owned by the organizationB . via repositories owned by the organizationC . via the GitHub MarketplaceD . via a repository owned...
What is the fastest and safest way to begin?
You need to create new workflows to deploy to an unfamiliar cloud provider. What is the fastest and safest way to begin?A . Create a custom action to wrap the cloud provider's CLI.B . Search GitHub Marketplace for verified actions published by the cloud provider.C . Use the actions/jenkins-plugin action...
Which requirements must you check to ensure that the self-hosted runner is properly configured?
You are a developer, and your container jobs are failing on a self-hosted runner. Which requirements must you check to ensure that the self-hosted runner is properly configured? (Choose two.)A . The self-hosted runner is running a Linux operating system.B . The self-hosted runner is running a Windows operating system.C...
Which choices represent best practices for publishing actions so that they can be consumed reliably? (Choose two.)
Which choices represent best practices for publishing actions so that they can be consumed reliably? (Choose two.)A . repo nameB . tagC . commit SHAD . organization nameE . default branchView AnswerAnswer: B, C Explanation: Using a tag is a best practice because tags are immutable and represent a fixed...
In which scenarios could the GITHUB_TOKEN be used? (Choose two.)
In which scenarios could the GITHUB_TOKEN be used? (Choose two.)A . to leverage a self-hosted runnerB . to create a repository secretC . to publish to GitHub PackagesD . to create issues in the repoE . to read from the file system on the runnerF . to add a member...
Which statement is true about using default environment variables?
Which statement is true about using default environment variables?A . The environment variables can be read in workflows using the ENV: variable_name syntax.B . The environment variables created should be prefixed with GITHUB_ to ensure they can be accessed in workflowsC . The environment variables can be set in the...
Based on the YAML below, which two statements are correct? (Choose two.)
Based on the YAML below, which two statements are correct? (Choose two.) A . This workflow will publish a package to an npm registry.B . This workflow will publish a package to GitHub Packages.C . This workflow file is using a matrix strategy.D . The workflow job publish-npm will only...
Which of the following is the best way for an enterprise to prevent certain marketplace actions from running?
Which of the following is the best way for an enterprise to prevent certain marketplace actions from running?A . Create a list of the actions that are restricted from being used as an enterprise policy. Every other action can be run.B . It is not possible; if an action is...
Which steps should you perform so the dataset is stored encrypted and can be decrypted during the workflow?
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.)A . Encrypt the dataset.B . Leverage the actions/download-secret action in the workflow.C . Store...
How can GitHub Actions encrypted secrets be used in if: conditionals within a workflow job?
How can GitHub Actions encrypted secrets be used in if: conditionals within a workflow job?A . Set the encrypted secret as a job-level environment variable and then reference the environment variable within the conditional statement.B . Create a job dependency that exposes the encrypted secret as a job output, which...