From dd2d9e5524447ced8f7cff7506be7d0b226a7664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Sat, 17 Aug 2024 14:06:24 +0200 Subject: [PATCH] ci: stdio: Fix typo on getting the containerd version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I assume the PR that introduced this was based on an older version of yq, and as the test couldn't run before it got merged we never noticed the error. However, this test has been failing for a reasonable amount of time, which makes me think that we either need a maintainer for it, or just remove it completely, but that's a discussion for another day. For now, let's make it, at least, run. Signed-off-by: Fabiano FidĂȘncio --- tests/integration/stdio/gha-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/stdio/gha-run.sh b/tests/integration/stdio/gha-run.sh index 5db12bb24c..4138b696bd 100755 --- a/tests/integration/stdio/gha-run.sh +++ b/tests/integration/stdio/gha-run.sh @@ -33,7 +33,7 @@ function install_dependencies() { # - containerd # - cri-container-cni release tarball already includes CNI plugins declare -a github_deps - github_deps[0]="cri_containerd:$(get_from_kata_deps "externals.containerd.${CONTAINERD_VERSION}")" + github_deps[0]="cri_containerd:$(get_from_kata_deps ".externals.containerd.${CONTAINERD_VERSION}")" for github_dep in "${github_deps[@]}"; do IFS=":" read -r -a dep <<< "${github_dep}"