Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/prepare-k8s/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
version: v3.10.1

- name: Create kind cluster
uses: helm/kind-action@v1.13.0
uses: helm/kind-action@v1.14.0
Copy link

Copilot AI Mar 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updating helm/kind-action to v1.14.0 changes its default Kind/Kubernetes versions (release notes indicate Kind v0.31.0 + Kubernetes v1.35.0). This composite action still pins kubectl to v1.28.8 (and later applies very old manifests), so the kubectl/client–server version skew is likely to break CI. Consider either pinning helm/kind-action to a node image/Kubernetes version compatible with v1.28.8, or updating the kubectl (and any in-cluster components/manifests you apply) to a version compatible with the new default cluster version.

Suggested change
uses: helm/kind-action@v1.14.0
uses: helm/kind-action@v1.14.0
with:
node_image: kindest/node:v1.28.0

Copilot uses AI. Check for mistakes.

- name: Install kubectl
uses: azure/setup-kubectl@v4.0.1
Expand Down
Loading