From aa1be624dcc9833fe238c68a9bcc7d6008d80309 Mon Sep 17 00:00:00 2001 From: Zachary Gallagher Date: Wed, 10 Apr 2024 10:12:09 -0700 Subject: [PATCH] Pinning k3s version in k3d action to sidestep containerd issue --- .github/actions/k3d/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/k3d/action.yaml b/.github/actions/k3d/action.yaml index b5496adc..79567705 100644 --- a/.github/actions/k3d/action.yaml +++ b/.github/actions/k3d/action.yaml @@ -7,5 +7,5 @@ runs: - run: "curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash" shell: bash - - run: k3d cluster delete && k3d cluster create + - run: k3d cluster delete && k3d cluster create --image="rancher/k3s:v1.28.4-k3s2" shell: bash