Skip to content

Commit

Permalink
fix(shaka-lab-github-runner): Update runner image OS to Ubuntu 24.04 (#…
Browse files Browse the repository at this point in the history
…65)

Updates our runner's base OS image to Ubuntu 24.04 (Noble).

Some of our jobs will not work well on the default runner OS, Ubuntu 20.04 (Focal).
  • Loading branch information
joeyparrish authored Oct 29, 2024
1 parent f52376b commit 28a91d4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions shaka-lab-github-runner/linux/start-runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ RUNNER_NAME="$HOSTNAME-$(printf %03d $INSTANCE)"
# Container name shown locally in Docker. Same padding.
CONTAINER_NAME="$PREFIX-$(printf %03d $INSTANCE)"
# The Docker image we run.
# This is from https://github.com/myoung34/docker-github-actions-runner
DOCKER_IMAGE="myoung34/github-runner:latest"
# Source: https://github.com/myoung34/docker-github-actions-runner
# Tags: https://hub.docker.com/r/myoung34/github-runner/tags
DOCKER_IMAGE="myoung34/github-runner:ubuntu-noble"

# It's okay if these cleanup commands fail. The container may not exist if
# cleanup was successful last time.
Expand Down

0 comments on commit 28a91d4

Please sign in to comment.