From 9ec950289e00a4fd2225b82784d75cacdc4b617f Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Sun, 3 Aug 2025 17:45:58 +0000 Subject: [PATCH] chore: teach renovate about examples/lxc-systemd/forgejo-runner-service.sh (#627) - other - [PR](https://code.forgejo.org/forgejo/runner/pulls/627): chore: teach renovate about examples/lxc-systemd/forgejo-runner-service.sh Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/627 Reviewed-by: Michael Kriese Co-authored-by: Earl Warren Co-committed-by: Earl Warren --- examples/lxc-systemd/forgejo-runner-service.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/lxc-systemd/forgejo-runner-service.sh b/examples/lxc-systemd/forgejo-runner-service.sh index 2a121503..24a5d755 100755 --- a/examples/lxc-systemd/forgejo-runner-service.sh +++ b/examples/lxc-systemd/forgejo-runner-service.sh @@ -20,8 +20,10 @@ trap "rm -fr $TMPDIR" EXIT : ${INPUTS_TOKEN:=} : ${INPUTS_FORGEJO:=https://code.forgejo.org} : ${INPUTS_LIFETIME:=7d} -: ${INPUTS_LXC_HELPERS_VERSION:=1.0.3} -: ${INPUTS_RUNNER_VERSION:=9.0.2} +DEFAULT_LXC_HELPERS_VERSION=1.0.3 # renovate: datasource=forgejo-tags depName=forgejo/lxc-helpers +: ${INPUTS_LXC_HELPERS_VERSION:=$DEFAULT_LXC_HELPERS_VERSION} +DEFAULT_RUNNER_VERSION=9.0.2 # renovate: datasource=forgejo-releases depName=forgejo/runner +: ${INPUTS_RUNNER_VERSION:=$DEFAULT_RUNNER_VERSION} : ${KILL_AFTER:=21600} # 6h == 21600 NODEJS_VERSION=20