GitHub Actions
Core GitHub Actions concepts: workflows, triggers, jobs, steps, runners, caching, secrets, and OIDC.
- workflow /ˈwɜːkfləʊ/
YAML file in .github/workflows/ defining one or more automated processes; triggered by events and composed of jobs.
"We have three workflows: ci.yml runs tests on every push, deploy.yml deploys on merge to main, and nightly.yml runs the full test suite at midnight."
- trigger /ˈtrɪɡər/
The on: key in a workflow specifying which events start it: push, pull_request, schedule, release, or workflow_dispatch for manual runs.
"We added workflow_dispatch to the deploy workflow so we can manually kick off a deployment from the GitHub UI without pushing a commit."
- job /dʒɒb/
A set of steps that execute on the same runner; jobs run in parallel by default unless a needs: dependency is declared.
"The test job and the lint job run in parallel to save time; the deploy job has needs: [test, lint] so it only runs if both pass."
- step /step/
An individual task within a job; either runs a shell command with run: or invokes a reusable action with uses:.
"The build step runs npm run build and the upload step uses actions/upload-artifact to store the dist folder for later jobs."
- action /ˈækʃən/
Reusable unit of code published to the GitHub Marketplace or stored locally; invoked with uses: in a workflow step.
"We use actions/checkout to clone the repo, actions/setup-node to install Node.js, and a custom local action for our deployment logic."
- runner /ˈrʌnər/
The virtual machine or physical server that executes a job; GitHub-hosted runners offer ubuntu-latest, windows-latest, and macos-latest.
"Our integration tests run on a self-hosted runner inside our VPC so they can reach internal services that GitHub-hosted runners cannot."
- artifact /ˈɑːtɪfækt/
File or directory uploaded during a workflow using actions/upload-artifact; downloadable from the Actions UI and passable between jobs.
"The build job uploads the compiled binary as an artifact and the deploy job downloads it — they run on different runners but share the output."
- secret /ˈsiːkrɪt/
Encrypted value stored in repository or organisation settings; accessed in workflows as ${{ secrets.NAME }} and masked in logs.
"The deploy workflow reads ${{ secrets.SSH_PRIVATE_KEY }} to authenticate with the production server — the value never appears in the workflow logs."
- environment /ɪnˈvaɪərənmənt/
Named deployment target (e.g. staging, production) with optional required reviewers and branch protection rules.
"The production environment requires approval from two senior engineers — a workflow deploying to it pauses until both click Approve in the GitHub UI."
- matrix strategy /ˈmeɪtrɪks ˈstrætədʒi/
Runs the same job with multiple parameter combinations; commonly used to test against several OS or language versions simultaneously.
"Our matrix tests against Node.js 18, 20, and 22 on Ubuntu and Windows — six jobs run in parallel from a single job definition."
- concurrency /kənˈkʌrənsi/
Workflow setting that controls whether a new run cancels in-progress runs for the same group key; prevents stale deploys from overwriting newer ones.
"Setting concurrency to the branch name means pushing twice in quick succession cancels the first deploy workflow before the newer one starts."
- if condition /ɪf kənˈdɪʃən/
Expression on a step or job that controls whether it runs; evaluated against GitHub context variables like github.ref and job.status.
"The notify step has if: failure() so it only sends a Slack alert when the job fails — it is skipped on successful runs."
- cache action /kæʃ ˈækʃən/
actions/cache; stores and restores files between workflow runs keyed by a hash; commonly used for node_modules and build outputs.
"Caching node_modules with a key based on package-lock.json hash reduced our CI time from 4 minutes to 90 seconds."
- GITHUB_TOKEN /ɡɪtˈhʌb ˈtəʊkən/
Automatically provisioned token with repository permissions; scoped to the current workflow run. Used for API calls, publishing releases, and commenting on PRs.
"The release job uses GITHUB_TOKEN to create a GitHub Release and upload the compiled binaries — no personal access token required."
- OIDC /əʊ aɪ diː siː/
OpenID Connect; allows workflow jobs to exchange short-lived tokens with cloud providers like AWS and GCP without storing long-lived credentials as secrets.
"With OIDC, our deploy job assumes an AWS IAM role directly from GitHub Actions — no AWS_ACCESS_KEY_ID secret to rotate or accidentally expose."
Quick Quiz — GitHub Actions
Test yourself on these 15 terms. You'll answer 10 multiple-choice questions — each shows a term, you pick the correct definition.
What does this term mean?
Quiz complete!
Frequently Asked Questions
How many terms are in the GitHub Actions vocabulary set?
The GitHub Actions set has 15 terms, each with a definition, pronunciation, and an example sentence showing real-world usage.
What level is the GitHub Actions vocabulary set?
This set is labelled Intermediate. If you find it too challenging, browse the full vocabulary list to find a set closer to your current level.
Is this vocabulary set free to study?
Yes. Every vocabulary set on CoderSlingo, including this one, is completely free — no account, sign-up, or payment required.
What study modes are available for this set?
Three modes: a searchable Study List showing all terms with definitions and examples, Flashcards for active recall practice, and a Quiz that tests you with multiple-choice questions.
Is my flashcard progress saved?
Yes — your "learned" status for each flashcard is saved in your browser's local storage, so it persists between visits on the same device.
Is there a matching interactive exercise for this set?
Yes — click "Practice exercises" above to test yourself on these exact terms in a scored, multiple-choice exercise.
Can I search within this vocabulary set?
Yes — use the search box above the term list to filter instantly by word, definition, or example as you type.
Is the GitHub Actions set linked to any career role paths?
Vocabulary sets that map to specific IT roles (like Frontend Developer or DevOps Engineer) show a "Part of" list above linking to those role paths — check the header for this set.
How is a quiz question scored?
Each quiz question shows one term and four possible definitions; you pick the correct one. At the end you get a percentage score and a summary message based on how many you got right.
Where can I find more vocabulary sets like this one?
Browse the full Vocabulary hub for all study sets, organised by topic — from Agile and Git to Cloud Infrastructure, Security, and AI/ML.