Skip to content

Commit 6b56a6c

Browse files
committed
pass RUNNER_VERSION to install-runner
Signed-off-by: Denis Baryshev <dennybaa@gmail.com>
1 parent e0bb13f commit 6b56a6c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

runners/podman.containerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ RUN \
4646
## Install Github Actions runner
4747
ENV RUNNER_TOOL_CACHE=/opt/hostedtoolcache
4848
COPY --chmod=755 install-runner /usr/bin
49-
RUN install-runner && /home/runner/bin/installdependencies.sh \
49+
RUN RUNNER_VERSION=${RUNNER_VERSION} install-runner \
50+
&& /home/runner/bin/installdependencies.sh \
5051
&& apt-get -y clean && rm -rf /var/cache/apt /var/lib/apt/lists/* /tmp/* /var/tmp/* \
5152
# Setup hosted toolcache directory \
5253
&& mkdir /opt/hostedtoolcache \

0 commit comments

Comments
 (0)