From cd747dae5f4badc841de31b105f0189273ac134f Mon Sep 17 00:00:00 2001 From: Jory Irving Date: Tue, 31 Dec 2024 12:08:04 -0700 Subject: [PATCH] feat(actions-runner): add yq --- apps/actions-runner/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/actions-runner/Dockerfile b/apps/actions-runner/Dockerfile index f5bb24f..a0b914b 100644 --- a/apps/actions-runner/Dockerfile +++ b/apps/actions-runner/Dockerfile @@ -29,6 +29,8 @@ RUN \ moreutils \ wget \ zstd \ + && curl -fsSL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64" \ + && chmod +x /usr/local/bin/yq \ && rm -rf /var/lib/apt/lists/* USER runner