Fix CI: replace broken setup-kind action and bump checkout to v6#4589
Merged
Conversation
✅ Deploy Preview for kptdocs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates GitHub Actions workflows to use newer action versions and switches KinD installation to a different action to support CI verification and releases.
Changes:
- Bump
actions/checkoutreferences from@v5to@v6across multiple workflows. - Replace
engineerd/setup-kindwithhelm/kind-actionin e2e workflows. - Adjust KinD installation inputs (e.g.,
install_only) and related setup configuration.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/verifyDocumentation.yml | Updates checkout action version used by docs verification. |
| .github/workflows/verifyContent.yml | Updates checkout action version used by content verification. |
| .github/workflows/release.yml | Updates checkout action version used by release pipeline. |
| .github/workflows/release-api.yml | Updates checkout action version used by API release pipeline. |
| .github/workflows/live-e2e.yml | Switches KinD installation action and adjusts Go caching inputs. |
| .github/workflows/go.yml | Updates checkout action version in Linux/macOS Go workflows. |
| .github/workflows/e2eEnvironment.yml | Switches KinD installation action in e2e environment workflow. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: Aravindhan Ayyanathan <aravindhan.a@est.tech>
eb5d252 to
016856e
Compare
efiacor
approved these changes
Jun 15, 2026
liamfallon
approved these changes
Jun 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Replace the defunct
engineerd/setup-kind@v0.6.2action withhelm/kind-action@v1and bumpactions/checkoutfrom v5 to v6 across all workflows.Motivation
The
engineerd/setup-kind@v0.6.2action is broken. its published artifact (dist/main/index.js) no longer exists, causing all e2e workflow runs to fail with:Error: File not found: '/home/runner/work/_actions/engineerd/setup-kind/v0.6.2/dist/main/index.js'The replacement (
helm/kind-action@v1withinstall_only: true) is actively maintained and provides the same functionality - installing the Kind binary without creating a cluster.The
actions/checkoutbump to v6 keeps CI on supported action versions.Changes
e2eEnvironment.yml: Replaceengineerd/setup-kind@v0.6.2withhelm/kind-action@v1live-e2e.yml: Same replacementgo.yml,release-api.yml,release.yml,verifyContent.yml,verifyDocumentation.yml: Bumpactions/checkout@v5→actions/checkout@v6Testing
helm/kind-action@v1supportsinstall_only: truewhich skips cluster creation (equivalent to the previousskipClusterCreation: true)v0.32.0is preservedAI Disclosure