Skip to content

Commit 6faa0ed

Browse files
committed
Update base runner version
1 parent 64e8e4b commit 6faa0ed

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:22.04
33
SHELL ["/bin/bash", "-c"]
44

55
ARG RUNNER_VERSION
6-
ENV RUNNER_VERSION="${RUNNER_VERSION:-2.319.1}"
6+
ENV RUNNER_VERSION="${RUNNER_VERSION:-2.322.0}"
77
ENV DEBIAN_FRONTEND=noninteractive
88
ENV HOME="/home/docker"
99
ENV RELEASE_URL="https://github.com/actions/runner/releases"

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ docker compose -f docker-compose-amd64.yml up
4343

4444
**Optional**
4545

46-
- **GITHUB_API_URL** - GitHub API endpoint. Uses https://api.github.com by default.
47-
- **GITHUB_SERVER_URL** - GitHub server endpoint. Uses https://github.com by default.
46+
- **GITHUB_API_URL** - GitHub API endpoint. Defaults to https://api.github.com
47+
- **GITHUB_SERVER_URL** - GitHub server endpoint. Defaults to https://github.com
4848
- **GIT_REPOSITORY** - Repository name _(required to create runners dedicated to a particular repo)_
49-
- **RUNNER_VERSION** - GitHub runner version. Uses `latest` runner version.
49+
- **RUNNER_VERSION** - GitHub runner version. Defaults to `2.322.0`
5050
- **RUNNER_GROUP** - Runner group. Uses `default`
51-
- **RUNNER_NAME** - Runner name. Uses a random instance ID.
52-
- **WORK_DIR** - Work directory. Uses `_work`
53-
- **LABELS** - Runner labels (comma separated). Uses `"docker-node,${os_name}-${architecture}"`
51+
- **RUNNER_NAME** - Runner name. Defaults to a random instance ID.
52+
- **WORK_DIR** - Work directory. Defaults to `_work`
53+
- **LABELS** - Runner labels (comma separated). Defaults to `"docker-node,${os_name}-${architecture}"`
5454
- **REUSE_EXISTING** - Re-use existing configuration. Defaults to `false`
5555

5656
> [!NOTE]

docker-compose-amd64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
args:
77
- PLATFORM=linux/amd64
88
image: github-runner-linux
9-
restart: always
9+
restart: no
1010
platform: linux/amd64
1111
# Load environment variables from a file
1212
# env_file: '.env'

docker-compose-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
args:
77
- PLATFORM=linux/arm64
88
image: github-runner-linux
9-
restart: always
9+
restart: no
1010
platform: linux/arm64
1111
# Load environment variables from a file
1212
# env_file: '.env'

0 commit comments

Comments
 (0)