DEV Community

Cover image for GitHub Actions Self-Hosted Runner Setup Guide for Ubuntu
Saravanan Gnanaguru for AWS Community Builders

Posted on • Originally published at github.com

GitHub Actions Self-Hosted Runner Setup Guide for Ubuntu

Introduction to GitHub Actions Workflow Basics and Runners

GitHub Actions Workflow Basics

GitHub Actions is a powerful automation platform that allows you to create custom workflows for your software development lifecycle. Workflows are defined using YAML files and can be triggered by various events such as pushes, pull requests, or scheduled times.

A basic GitHub Actions workflow consists of:

  • Events: Triggers that start the workflow (e.g., push, pull_request).
  • Jobs: A series of steps that execute on the same runner.
  • Steps: Individual tasks within a job, which can run commands or use pre-built actions.

Example workflow file (.github/workflows/ci.yml):

name: CI
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v2
      - name: Run build
        run: make build
Enter fullscreen mode Exit fullscreen mode

Runners

Runners are the machines that execute the jobs in your workflows. GitHub provides hosted runners with different operating systems, but you can also use self-hosted runners.

  • GitHub-Hosted Runners: Managed by GitHub, these runners come pre-configured with a wide range of tools and software.
  • Self-Hosted Runners: Custom machines that you manage yourself. These can be on-premise servers, physical machines, virtual machines, or cloud instances.

Need for Self-Hosted Runners

While GitHub-hosted runners are convenient, there are scenarios where self-hosted runners are beneficial:

  • Custom Environments: You need specific software, configurations, or hardware that GitHub-hosted runners do not provide.
  • Performance: You require more powerful hardware or specific hardware configurations.
  • Cost: You want to reduce costs by using your own infrastructure.
  • Security: You need to run workflows in a more controlled and secure environment.

Self-hosted runners give you more control over the environment in which your workflows run, allowing you to tailor the setup to your specific needs.

In this How-to Guide we will explore, how to set up a GitHub Actions self-hosted runner on an Ubuntu instance.

Prerequisites

  • A GitHub repository where you want to add the self-hosted runner.
  • A GitHub Personal Access Token (PAT) with repo scope.
  • An Ubuntu system (can be an EC2 instance on AWS or any other Ubuntu machine) - e.g., Ubuntu Server 22.04 LTS or 24.04 LTS
  • Administrative privileges on the Ubuntu system.

Steps to Create a Personal Access Token (PAT) from Developer Settings

To create a Personal Access Token (PAT) for GitHub, follow these steps:

Step 1: Navigate to Developer Settings

  1. Log in to your GitHub account.
  2. In the upper-right corner of any page, click your profile photo, then click Settings.
  3. In the left sidebar, click Developer settings.

Step 2: Generate a New Token

  1. In the left sidebar, click Personal access tokens > Token Classic .
  2. Click Generate new token .

Step 3: Configure the Token

  1. Note: If you are prompted to confirm your password, enter your GitHub password.
  2. Note: Give your token a descriptive name in the Note field.
  3. Expiration: Set an expiration date for the token. You can choose from 7 days, 30 days, 60 days, 90 days, or no expiration.
  4. Select Scopes: Select the scopes or permissions you'd like to grant this token. For setting up a self-hosted runner, you typically need the repo scope.

Step 4: Generate and Save the Token

  1. Click Generate token.
  2. Important: Copy the token to a secure location. This is the only time you will be able to see it. If you lose it, you will need to generate a new token.

Example of Required Scopes

For setting up a self-hosted runner, you generally need the following scope:

  • repo: Full control of private repositories

You now have a Personal Access Token (PAT) that you can use to authenticate with GitHub when setting up your self-hosted runner. Make sure to keep this token secure and do not share it publicly.

Step-by-Step Guide Create Self Hosted Runner

Step 1: Launch an Ubuntu EC2 Instance (if using AWS)

You can spin-up the instance either manually from AWS console or use Terraform IaC Automation

AWS Console Method

  1. Log in to your AWS Management Console.
  2. Navigate to the EC2 Dashboard.
  3. Click on "Launch Instance".
  4. Choose an Amazon Machine Image (AMI) with Ubuntu (e.g., Ubuntu Server 22.04 LTS or 24.04 LTS
  5. Select an instance type (e.g., t2.micro for testing).
  6. Configure instance details, add storage, and configure security groups as needed.
  7. Launch the instance and connect to it via SSH.

Or

Terraform IaC Method

You can use Terraform IaC code to spin-up an EC2 instance. Refer the Terraform EC2 Module Guide for the reference.

Step 2: Set Up the Runner on Ubuntu

  1. SSH into your Ubuntu instance.
  2. Create a shell script file named SETUP-RUNNER-LINUX.SH and add the following code:

    #!/bin/bash
    # Check if both arguments are provided
    if [ "$#" -ne 2 ]; then
        echo "Missing arguments. Usage: $0 <repo_to_add_runner> <github_token>"
        exit 1
    fi
    
    repo_to_add_runner=$1
    github_token=$2
    
    # Create a folder
    mkdir actions-runner && cd actions-runner
    # Download the latest runner package
    curl -o actions-runner-linux-x64-2.313.0.tar.gz -L https://github.com/actions/runner/releases/download/v2.313.0/actions-runner-linux-x64-2.313.0.tar.gz
    
    # Optional: Validate the hash
    # echo "5697e222e71c4  actions-runner-linux-x64-2.313.0.tar.gz" | shasum -a 256 -c
    
    # Create directory to extract the tar
    mkdir runner-files && cd runner-files
    # Extract the installer
    tar xzf ../actions-runner-linux-x64-2.313.0.tar.gz
    
    # Create GitHub runner registration token to be used in config.sh input
    curl -L -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer $github_token" -H "X-GitHub-Api-Version: 2022-11-28" https://api.github.com/repos/chefgs/$repo_to_add_runner/actions/runners/registration-token | jq .token --raw-output > token.txt
    repo_token=$(cat token.txt)
    
    # Create the runner and start the configuration experience
    ./config.sh --unattended --url https://github.com/chefgs/$repo_to_add_runner --token $repo_token
    
    # Config.sh installs the service files. 
    # So as a last step, setup runner service & run it!
    ./svc.sh install && ./svc.sh start
    
    # Otherwise, If you want to run the runner interactively, you can run ./run.sh
    
    # Clean up
    if [ ! -z token.txt ]; then
        rm token.txt
    fi
    
  3. Make the script executable:

    chmod +x SETUP-RUNNER-LINUX.SH
    
  4. Run the script with your repository name and GitHub token as arguments:

    ./SETUP-RUNNER-LINUX.SH <repo_to_add_runner> <github_token>
    

Step 3: Update Your Workflow File

Add the following line to your workflow file to use the self-hosted runner:

runs-on: self-hosted
Enter fullscreen mode Exit fullscreen mode

Example workflow file (.github/workflows/ci.yml):

name: CI
on: [push, pull_request]
jobs:
  build:
    runs-on: self-hosted
    steps:
      - name: Checkout code
        uses: actions/checkout@v2
      - name: Run build
        run: make build
Enter fullscreen mode Exit fullscreen mode

Explanation

How a Specific Repository Uses the Self-Hosted Runner

When you set up a self-hosted runner, you are adding a custom machine to your GitHub repository that can execute GitHub Actions workflows. Here's how it works:

  1. Runner Setup: You download and configure the runner software on your machine.
  2. Registration Token: You generate a registration token from GitHub, which is used to link the runner to your specific repository.
  3. Configuration: You configure the runner with the repository URL and the registration token.
  4. Service Installation: The runner is installed as a service on your machine, allowing it to start automatically and run in the background.
  5. Workflow Execution: When a workflow is triggered in your repository, GitHub Actions will use the self-hosted runner to execute the jobs defined in the workflow.

Linking the Runner to a Repository

  • Registration Token: The registration token generated from GitHub is specific to the repository you want to link the runner to. This token ensures that the runner is securely associated with the correct repository. We will be using GitHub PAT token passed as an argument to fetch the repo registration token.- Repository URL: During the configuration step, you provide the URL of the repository. This URL, combined with the registration token, links the runner to the repository.
  • GitHub Actions Workflow: In your workflow file, you specify runs-on: self-hosted to indicate that the job should run on the self-hosted runner.

By specifying runs-on: self-hosted, GitHub Actions will use the self-hosted runner you set up to execute the job.

Conclusion

You have now set up a GitHub Actions self-hosted runner on an Ubuntu system. Update your workflow files to use this runner by specifying runs-on: self-hosted. This allows you to run your CI/CD jobs on your own hardware, providing more control over the environment and potentially reducing costs.

Reference


Top comments (0)