From d6fc45cdfec3801001799790567999c57629b876 Mon Sep 17 00:00:00 2001 From: sebthom Date: Sun, 5 Jan 2025 22:52:47 +0100 Subject: [PATCH] feat: add ubuntu-24.04 label --- README.md | 2 +- image/Dockerfile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 117b105..38a0fad 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ The following environment variables are referenced in the `/opt/config.template. Name|Default Value|Description ----|-------------|----------- -GITEA_RUNNER_LABELS|``|Comma-separated list of labels in the format of `label[:schema[:args]]`.
If not specified the following labels are used
  1. `ubuntu-latest:docker://catthehacker/ubuntu:act-latest`
  2. `ubuntu-22.04:docker://catthehacker/ubuntu:act-22.04`
  3. `ubuntu-20.04:docker://catthehacker/ubuntu:act-20.04`
+GITEA_RUNNER_LABELS|``|Comma-separated list of labels in the format of `label[:schema[:args]]`.
If not specified the following labels are used
  1. `ubuntu-latest:docker://catthehacker/ubuntu:act-latest`
  2. `ubuntu-24.04:docker://catthehacker/ubuntu:act-24.04
  3. `ubuntu-22.04:docker://catthehacker/ubuntu:act-22.04`
  4. `ubuntu-20.04:docker://catthehacker/ubuntu:act-20.04`
GITEA_RUNNER_LOG_LEVEL|`info`|The level of logging, can be trace, debug, info, warn, error, fatal GITEA_RUNNER_ENV_FILE|`/data/.env`|Extra environment variables to run jobs from a file GITEA_RUNNER_FETCH_TIMEOUT|`5s`|The timeout for fetching the job from the Gitea instance diff --git a/image/Dockerfile b/image/Dockerfile index 0c0c374..949babf 100644 --- a/image/Dockerfile +++ b/image/Dockerfile @@ -194,6 +194,7 @@ ENV \ GITEA_RUNNER_LABELS='' \ GITEA_RUNNER_LABELS_DEFAULT='\ ubuntu-latest:docker://catthehacker/ubuntu:act-latest,\ +ubuntu-24.04:docker://catthehacker/ubuntu:act-24.04,\ ubuntu-22.04:docker://catthehacker/ubuntu:act-22.04,\ ubuntu-20.04:docker://catthehacker/ubuntu:act-20.04' \ GITEA_RUNNER_UID=1000 \