From 6da1cde09ca642e2cac02d6046ba2eefd6e8c31f Mon Sep 17 00:00:00 2001 From: Bassem Dghaidi <568794+Link-@users.noreply.github.com> Date: Thu, 19 Jan 2023 11:36:05 +0100 Subject: [PATCH] Update runner version to 2.301.1 (#2182) Co-authored-by: TingluoHuang --- .github/workflows/release-runners.yaml | 2 +- Makefile | 2 +- runner/Makefile | 2 +- runner/actions-runner-dind-rootless.ubuntu-20.04.dockerfile | 2 +- runner/actions-runner-dind-rootless.ubuntu-22.04.dockerfile | 2 +- runner/actions-runner-dind.ubuntu-20.04.dockerfile | 2 +- runner/actions-runner-dind.ubuntu-22.04.dockerfile | 2 +- runner/actions-runner.ubuntu-20.04.dockerfile | 2 +- runner/actions-runner.ubuntu-22.04.dockerfile | 2 +- test/e2e/e2e_test.go | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release-runners.yaml b/.github/workflows/release-runners.yaml index 6d27b58d..726a8bf7 100644 --- a/.github/workflows/release-runners.yaml +++ b/.github/workflows/release-runners.yaml @@ -19,7 +19,7 @@ env: PUSH_TO_REGISTRIES: true TARGET_ORG: actions-runner-controller TARGET_WORKFLOW: release-runners.yaml - RUNNER_VERSION: 2.300.2 + RUNNER_VERSION: 2.301.1 DOCKER_VERSION: 20.10.21 RUNNER_CONTAINER_HOOKS_VERSION: 0.2.0 diff --git a/Makefile b/Makefile index d997d3fa..171915bf 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ else endif DOCKER_USER ?= $(shell echo ${NAME} | cut -d / -f1) VERSION ?= dev -RUNNER_VERSION ?= 2.300.2 +RUNNER_VERSION ?= 2.301.1 TARGETPLATFORM ?= $(shell arch) RUNNER_NAME ?= ${DOCKER_USER}/actions-runner RUNNER_TAG ?= ${VERSION} diff --git a/runner/Makefile b/runner/Makefile index baafc49d..1b59f237 100644 --- a/runner/Makefile +++ b/runner/Makefile @@ -6,7 +6,7 @@ DIND_ROOTLESS_RUNNER_NAME ?= ${DOCKER_USER}/actions-runner-dind-rootless OS_IMAGE ?= ubuntu-22.04 TARGETPLATFORM ?= $(shell arch) -RUNNER_VERSION ?= 2.300.2 +RUNNER_VERSION ?= 2.301.1 RUNNER_CONTAINER_HOOKS_VERSION ?= 0.2.0 DOCKER_VERSION ?= 20.10.21 diff --git a/runner/actions-runner-dind-rootless.ubuntu-20.04.dockerfile b/runner/actions-runner-dind-rootless.ubuntu-20.04.dockerfile index faddc4ed..eb36d8a3 100644 --- a/runner/actions-runner-dind-rootless.ubuntu-20.04.dockerfile +++ b/runner/actions-runner-dind-rootless.ubuntu-20.04.dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:20.04 ARG TARGETPLATFORM -ARG RUNNER_VERSION=2.300.2 +ARG RUNNER_VERSION=2.301.1 ARG RUNNER_CONTAINER_HOOKS_VERSION=0.2.0 # Docker and Docker Compose arguments ENV CHANNEL=stable diff --git a/runner/actions-runner-dind-rootless.ubuntu-22.04.dockerfile b/runner/actions-runner-dind-rootless.ubuntu-22.04.dockerfile index 72ca96ba..cc7a1c85 100644 --- a/runner/actions-runner-dind-rootless.ubuntu-22.04.dockerfile +++ b/runner/actions-runner-dind-rootless.ubuntu-22.04.dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:22.04 ARG TARGETPLATFORM -ARG RUNNER_VERSION=2.300.2 +ARG RUNNER_VERSION=2.301.1 ARG RUNNER_CONTAINER_HOOKS_VERSION=0.2.0 # Docker and Docker Compose arguments ENV CHANNEL=stable diff --git a/runner/actions-runner-dind.ubuntu-20.04.dockerfile b/runner/actions-runner-dind.ubuntu-20.04.dockerfile index 6aab2d60..0e8e790a 100644 --- a/runner/actions-runner-dind.ubuntu-20.04.dockerfile +++ b/runner/actions-runner-dind.ubuntu-20.04.dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:20.04 ARG TARGETPLATFORM -ARG RUNNER_VERSION=2.300.2 +ARG RUNNER_VERSION=2.301.1 ARG RUNNER_CONTAINER_HOOKS_VERSION=0.2.0 # Docker and Docker Compose arguments ARG CHANNEL=stable diff --git a/runner/actions-runner-dind.ubuntu-22.04.dockerfile b/runner/actions-runner-dind.ubuntu-22.04.dockerfile index 2170d10a..e549ca75 100644 --- a/runner/actions-runner-dind.ubuntu-22.04.dockerfile +++ b/runner/actions-runner-dind.ubuntu-22.04.dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:22.04 ARG TARGETPLATFORM -ARG RUNNER_VERSION=2.300.2 +ARG RUNNER_VERSION=2.301.1 ARG RUNNER_CONTAINER_HOOKS_VERSION=0.2.0 # Docker and Docker Compose arguments ARG CHANNEL=stable diff --git a/runner/actions-runner.ubuntu-20.04.dockerfile b/runner/actions-runner.ubuntu-20.04.dockerfile index 94ceb531..3c4ae5a1 100644 --- a/runner/actions-runner.ubuntu-20.04.dockerfile +++ b/runner/actions-runner.ubuntu-20.04.dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:20.04 ARG TARGETPLATFORM -ARG RUNNER_VERSION=2.300.2 +ARG RUNNER_VERSION=2.301.1 ARG RUNNER_CONTAINER_HOOKS_VERSION=0.2.0 # Docker and Docker Compose arguments ARG CHANNEL=stable diff --git a/runner/actions-runner.ubuntu-22.04.dockerfile b/runner/actions-runner.ubuntu-22.04.dockerfile index 3b998b76..e4c304f9 100644 --- a/runner/actions-runner.ubuntu-22.04.dockerfile +++ b/runner/actions-runner.ubuntu-22.04.dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:22.04 ARG TARGETPLATFORM -ARG RUNNER_VERSION=2.300.2 +ARG RUNNER_VERSION=2.301.1 ARG RUNNER_CONTAINER_HOOKS_VERSION=0.2.0 # Docker and Docker Compose arguments ARG CHANNEL=stable diff --git a/test/e2e/e2e_test.go b/test/e2e/e2e_test.go index 9d88d2d0..04e6810b 100644 --- a/test/e2e/e2e_test.go +++ b/test/e2e/e2e_test.go @@ -41,7 +41,7 @@ var ( testResultCMNamePrefix = "test-result-" - RunnerVersion = "2.300.2" + RunnerVersion = "2.301.1" ) // If you're willing to run this test via VS Code "run test" or "debug test",