From a9776149d4b876892ec58bb2144368c117345140 Mon Sep 17 00:00:00 2001 From: eksrha <58111764+eksrha@users.noreply.github.com> Date: Wed, 15 Feb 2023 12:58:01 +0100 Subject: [PATCH] update gh runner to 2.302.2 --- images/base/Dockerfile | 2 +- images/maven-adopt-8-ng/Dockerfile | 6 +++--- images/ng-cli-karma/Dockerfile | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/images/base/Dockerfile b/images/base/Dockerfile index bd90870..15a4941 100644 --- a/images/base/Dockerfile +++ b/images/base/Dockerfile @@ -18,7 +18,7 @@ ENV GH_RUNNER_WORKDIR="/home/$USERNAME" ENV GH_KANIKO_WORKDIR="/kaniko/workspace" # https://github.com/actions/runner/releases -ENV GH_RUNNER_VERSION=2.300.2 +ENV GH_RUNNER_VERSION=2.302.0 ENV GH_RUNNER_LABELS=ubuntu-20.04 # https://github.com/fullstack-devops/awesome-ci/releases diff --git a/images/maven-adopt-8-ng/Dockerfile b/images/maven-adopt-8-ng/Dockerfile index 57de55d..ec14924 100644 --- a/images/maven-adopt-8-ng/Dockerfile +++ b/images/maven-adopt-8-ng/Dockerfile @@ -26,13 +26,13 @@ RUN export ARCH=$(/helper-scripts/translate-aarch.sh a-short) \ && wget -q https://get.helm.sh/helm-v${HELM_VERSION}-linux-${ARCH}.tar.gz -O - | tar -xzO linux-${ARCH}/helm > /usr/local/bin/helm \ && chmod +x /usr/local/bin/helm -RUN mkdir -p /home/${USERNAME}/.m2/ \ - && chown -R $USERNAME /home/$USERNAME - # install npm tools: yarn ENV NPM_CONFIG_LOGLEVEL=warn NG_CLI_ANALYTICS=false RUN npm install --location=global yarn pnpm @angular/cli@15 \ && npm cache clean --force + +RUN mkdir -p /home/${USERNAME}/.m2/ \ + && chown -R $USERNAME /home/$USERNAME USER $USERNAME diff --git a/images/ng-cli-karma/Dockerfile b/images/ng-cli-karma/Dockerfile index 941a98f..dea6f5e 100644 --- a/images/ng-cli-karma/Dockerfile +++ b/images/ng-cli-karma/Dockerfile @@ -31,13 +31,13 @@ RUN export ARCH=$(/helper-scripts/translate-aarch.sh a-short) \ && wget -q https://get.helm.sh/helm-v${HELM_VERSION}-linux-${ARCH}.tar.gz -O - | tar -xzO linux-${ARCH}/helm > /usr/local/bin/helm \ && chmod +x /usr/local/bin/helm -RUN chown -R $USERNAME /home/$USERNAME - # install npm tools: yarn ENV NPM_CONFIG_LOGLEVEL=warn NG_CLI_ANALYTICS=false RUN npm install --location=global yarn pnpm @angular/cli@15 \ && npm cache clean --force +RUN chown -R $USERNAME /home/$USERNAME + USER $USERNAME # install helm plugins helm push, appr && diff