Error on upgrade from 16.5.0 to 16.6.1 - caused by entrypoint
After the upgrade , most of the pipelines fail with this error : `ERROR: Job failed (system failure): prepare environment: setting up trapping scripts on emptyDir: unable to upgrade connection: container not found ("build"). Check https://docs.gitlab.com/runner/shells/index.html#shell-profile-loading for more information` This is the stage ci file , it's as basic as it gets: ``` stages: - yaml_lint yaml_lint: tags: - test stage: yaml_lint image: name: mikefarah/yq:4 entrypoint: - '/bin/sh' script: - for i in `find . -type f -name "*.yml"`; do yq $i > /dev/null ; done ``` This is the runner configuration: ``` runners: privileged: false locked: false secret: gitlab-gitlab-runner-secret runUntagged: false tags: "test" pollTimeout: 900 name: "test" config: | [[runners]] [runners.kubernetes] poll_timeout = 900 poll_interval = 5 image = "ubuntu:23.04" cpu_request = "500m" memory_limit = "2Gi" memory_request = "1Gi" service_cpu_request = "300m" service_memory_limit = "500Mi" service_memory_request = "300Mi" helper_cpu_request = "300m" helper_memory_limit = "500Mi" helper_memory_request = "300Mi" [runners.kubernetes.node_selector] nodegroup = "large" ``` Thanks
issue