This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Choose the best response for each question.
What action do you use to save artifacts from a GitHub Actions workflow?
actions/upload-artifact
actions/checkout@v3
actions/download-artifact
Which of the following options is a way that you can't use GitHub Actions workflows?
Automatically run test suites on each push.
Kick off a review process.
Automate common repetitive tasks, such as welcoming new contributors to a repository.
Upload a new secret to GitHub Secrets.
Which action would you use to access a repository's code from the virtual machine provided by GitHub Actions?
actions/checkout
npm install
actions/setup-node
How many builds does the following matrix produce? os: [ubuntu-latest, windows-latest] node-version: [14.x, 16.x, 18.x]
os: [ubuntu-latest, windows-latest] node-version: [14.x, 16.x, 18.x]
Six
Three
Five
How can you pass data between jobs in a GitHub Actions workflow?
By using the needs keyword.
needs
By using the outputs keyword.
outputs
By using the env keyword.
env
By using the secrets keyword.
secrets
You must answer all questions before checking your work.
Was this page helpful?