Skip to content

Commit a60b361

Browse files
committed
Update 20240207
1 parent 93f9007 commit a60b361

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
pull_request:
1010
env:
1111
IMAGE_NAME: karellen-gha-runner
12-
RUNNER_VERSION: 2.312.0
12+
RUNNER_VERSION: 2.313.0
1313

1414
jobs:
1515
push:

Dockerfile

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ FROM ubuntu:jammy
44

55
ARG RUNNER_VERSION
66
ARG RUNNER_ARCH
7-
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.5.0
7+
ARG BUILDX_VERSION=0.12.1
8+
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.5.1
89

910

1011
RUN mkdir -p /home/runner
@@ -39,6 +40,10 @@ RUN apt-get update && \
3940
curl -fsSL https://get.docker.com -o get-docker.sh && \
4041
sh get-docker.sh && \
4142
rm get-docker.sh && \
43+
mkdir -p /usr/local/lib/docker/cli-plugins && \
44+
curl -fLo /usr/local/lib/docker/cli-plugins/docker-buildx \
45+
"https://github.com/docker/buildx/releases/download/v${BUILDX_VERSION}/buildx-v${BUILDX_VERSION}.linux-${RUNNER_ARCH}" && \
46+
chmod +x /usr/local/lib/docker/cli-plugins/docker-buildx && \
4247
\
4348
curl -f -L -o runner.tar.gz https://github.com/actions/runner/releases/download/v${RUNNER_VERSION}/actions-runner-linux-${RUNNER_ARCH}-${RUNNER_VERSION}.tar.gz \
4449
&& tar xzf ./runner.tar.gz \

0 commit comments

Comments
 (0)