[llvm] [Github] Bump Runner Version in Containers (PR #124324)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 24 10:58:20 PST 2025
https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/124324
This patch bumps the runner version to v2.322.0 in the CI containers. Nothing looks suspicious in the change log, and it is important to keep the runner up to date or we will end up with containers that cannot connect to Github due to having a version too old.
>From fafb42cce348cfab115b703c83114b98eaef542c Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Fri, 24 Jan 2025 18:55:59 +0000
Subject: [PATCH] [Github] Bump Runner Version in Containers
This patch bumps the runner version to v2.322.0 in the CI containers. Nothing
looks suspicious in the change log, and it is important to keep the runner up
to date or we will end up with containers that cannot connect to Github due
to having a version too old.
---
.../workflows/containers/github-action-ci-windows/Dockerfile | 2 +-
.github/workflows/containers/github-action-ci/Dockerfile | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/containers/github-action-ci-windows/Dockerfile b/.github/workflows/containers/github-action-ci-windows/Dockerfile
index 2295e39d62c30f..9a1fab694c9dfc 100644
--- a/.github/workflows/containers/github-action-ci-windows/Dockerfile
+++ b/.github/workflows/containers/github-action-ci-windows/Dockerfile
@@ -108,7 +108,7 @@ RUN choco install -y handle
RUN pip3 install pywin32 buildbot-worker==2.8.4
-ARG RUNNER_VERSION=2.321.0
+ARG RUNNER_VERSION=2.322.0
ENV RUNNER_VERSION=$RUNNER_VERSION
RUN powershell -Command \
diff --git a/.github/workflows/containers/github-action-ci/Dockerfile b/.github/workflows/containers/github-action-ci/Dockerfile
index 35a0f1f6020dcd..377b8f14402ee0 100644
--- a/.github/workflows/containers/github-action-ci/Dockerfile
+++ b/.github/workflows/containers/github-action-ci/Dockerfile
@@ -96,7 +96,7 @@ WORKDIR /home/gha
FROM ci-container as ci-container-agent
-ENV GITHUB_RUNNER_VERSION=2.321.0
+ENV GITHUB_RUNNER_VERSION=2.322.0
RUN mkdir actions-runner && \
cd actions-runner && \
More information about the llvm-commits
mailing list