Skip to content

Commit 8b36ea9

Browse files
Updates: runner to v2.321.0 container-hooks to v0.6.2 (#3809)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 96d1bbc commit 8b36ea9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ endif
66
DOCKER_USER ?= $(shell echo ${DOCKER_IMAGE_NAME} | cut -d / -f1)
77
VERSION ?= dev
88
COMMIT_SHA = $(shell git rev-parse HEAD)
9-
RUNNER_VERSION ?= 2.320.0
9+
RUNNER_VERSION ?= 2.321.0
1010
TARGETPLATFORM ?= $(shell arch)
1111
RUNNER_NAME ?= ${DOCKER_USER}/actions-runner
1212
RUNNER_TAG ?= ${VERSION}
@@ -310,7 +310,7 @@ github-release: release
310310
# Otherwise we get errors like the below:
311311
# Error: failed to install CRD crds/actions.summerwind.dev_runnersets.yaml: CustomResourceDefinition.apiextensions.k8s.io "runnersets.actions.summerwind.dev" is invalid: [spec.validation.openAPIV3Schema.properties[spec].properties[template].properties[spec].properties[containers].items.properties[ports].items.properties[protocol].default: Required value: this property is in x-kubernetes-list-map-keys, so it must have a default or be a required property, spec.validation.openAPIV3Schema.properties[spec].properties[template].properties[spec].properties[initContainers].items.properties[ports].items.properties[protocol].default: Required value: this property is in x-kubernetes-list-map-keys, so it must have a default or be a required property]
312312
#
313-
# Note that controller-gen newer than 0.6.1 is needed due to https://github.com/kubernetes-sigs/controller-tools/issues/448
313+
# Note that controller-gen newer than 0.6.2 is needed due to https://github.com/kubernetes-sigs/controller-tools/issues/448
314314
# Otherwise ObjectMeta embedded in Spec results in empty on the storage.
315315
controller-gen:
316316
ifeq (, $(shell which controller-gen))

runner/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ DIND_ROOTLESS_RUNNER_NAME ?= ${DOCKER_USER}/actions-runner-dind-rootless
66
OS_IMAGE ?= ubuntu-22.04
77
TARGETPLATFORM ?= $(shell arch)
88

9-
RUNNER_VERSION ?= 2.320.0
10-
RUNNER_CONTAINER_HOOKS_VERSION ?= 0.6.1
9+
RUNNER_VERSION ?= 2.321.0
10+
RUNNER_CONTAINER_HOOKS_VERSION ?= 0.6.2
1111
DOCKER_VERSION ?= 24.0.7
1212

1313
# default list of platforms for which multiarch image is built

runner/VERSION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
RUNNER_VERSION=2.320.0
2-
RUNNER_CONTAINER_HOOKS_VERSION=0.6.1
1+
RUNNER_VERSION=2.321.0
2+
RUNNER_CONTAINER_HOOKS_VERSION=0.6.2

test/e2e/e2e_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ var (
3636

3737
testResultCMNamePrefix = "test-result-"
3838

39-
RunnerVersion = "2.320.0"
40-
RunnerContainerHooksVersion = "0.6.1"
39+
RunnerVersion = "2.321.0"
40+
RunnerContainerHooksVersion = "0.6.2"
4141
)
4242

4343
// If you're willing to run this test via VS Code "run test" or "debug test",

0 commit comments

Comments
 (0)