Skip to content

Commit 68babd4

Browse files
github-actions[bot]wu-cl
authored andcommitted
Updates: runner to v2.325.0 container-hooks to v0.7.0
1 parent 2b9eb77 commit 68babd4

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
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.323.0
9+
RUNNER_VERSION ?= 2.325.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.2 is needed due to https://github.com/kubernetes-sigs/controller-tools/issues/448
313+
# Note that controller-gen newer than 0.7.0 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))

docker-bake.hcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ group default {
33
}
44

55
variable TAG_SUFFIX { default = "latest" }
6-
variable RUNNER_VERSION { default = "2.323.0" }
7-
variable RUNNER_CONTAINER_HOOKS_VERSION { default = "0.6.2" }
6+
variable RUNNER_VERSION { default = "2.325.0" }
7+
variable RUNNER_CONTAINER_HOOKS_VERSION { default = "0.7.0" }
88
variable DOCKER_VERSION { default = "24.0.7" }
99

1010
target actions-runner-dind-ubuntu-22-04 {

runner/Makefile

Lines changed: 2 additions & 2 deletions
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.323.0
10-
RUNNER_CONTAINER_HOOKS_VERSION ?= 0.6.2
9+
RUNNER_VERSION ?= 2.325.0
10+
RUNNER_CONTAINER_HOOKS_VERSION ?= 0.7.0
1111
DOCKER_VERSION ?= 24.0.7
1212

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

runner/VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
RUNNER_VERSION=2.323.0
2-
RUNNER_CONTAINER_HOOKS_VERSION=0.6.2
1+
RUNNER_VERSION=2.325.0
2+
RUNNER_CONTAINER_HOOKS_VERSION=0.7.0

test/e2e/e2e_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ var (
3636

3737
testResultCMNamePrefix = "test-result-"
3838

39-
RunnerVersion = "2.323.0"
40-
RunnerContainerHooksVersion = "0.6.2"
39+
RunnerVersion = "2.325.0"
40+
RunnerContainerHooksVersion = "0.7.0"
4141
)
4242

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

0 commit comments

Comments
 (0)