Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Edit sentence to include self-hosted runner example #31

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion responses/00.1_first-steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A workflow can contain many actions. Each action has its own purpose. We'll put

Actions come in two types: **container actions** and **JavaScript actions**.

Docker **container actions** allow the environment to be packaged with the GitHub Actions code and can only execute in the GitHub-Hosted Linux environment.
Docker **container actions** allow the environment to be packaged with the GitHub Actions code and can execute in the GitHub-Hosted Linux environment or, if you prefer using a self-hosted runner, the runner must use a Linux operating system and have Docker installed to run Docker container actions.

**JavaScript actions** decouple the GitHub Actions code from the environment allowing faster execution but accepting greater dependency management responsibility.

Expand Down