From cc11de52a5701324e36fadd0cf73466056bde97c Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Fri, 9 Jan 2026 17:19:01 -0500 Subject: [PATCH] fix runner labels --- .gitea/workflows/deploy.yml | 5 +---- templates/gitea-runner.yaml.j2 | 3 ++- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index ba46b7f..c734e95 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -9,11 +9,8 @@ jobs: deploy: name: Prepare runs-on: runner + container: node:18 steps: - - name: Setup NodeJS - uses: actions/setup-node@v6 - with: - node-version: "25.2.1" - name: Checkout Repo uses: actions/checkout@v4 with: diff --git a/templates/gitea-runner.yaml.j2 b/templates/gitea-runner.yaml.j2 index d8a1a28..8e4b308 100644 --- a/templates/gitea-runner.yaml.j2 +++ b/templates/gitea-runner.yaml.j2 @@ -10,7 +10,8 @@ runner: fetch_timeout: 5s fetch_interval: 2s labels: - - "runner:host" + - "ubuntu-latest:docker://node:18-bullseye" + - "ubuntu-22.04:docker://node:18-bullseye" container: network: "host"