ci: fix broken setup-kind action with helm/kind-action#445
Merged
Conversation
engineerd/setup-kind v0.6.2 fails with 'File not found: dist/main/index.js' (the tagged commit does not ship the compiled action), breaking the setup-cluster step for every env job. Switch to the maintained helm/kind-action v1.14.0 with cluster_name kind so the kind-kind kubectl context and `kind load docker-image` defaults keep working. Also make collect-fission-dump best effort: a missing fission CLI (setup failed before installing it) or empty dump no longer masks the original job failure. The broken bump in #436 went unnoticed because that PR touched no env directories, so no job exercised setup-cluster pre-merge; this PR includes a perl README link fix so the perl job validates the action end to end. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Same fix as #442/#443/#444: hiberbee/github-action-skaffold pins skaffold 2.3.1, which cannot parse the repo's skaffold/v4beta13 config. Needed here so the perl job can validate the kind-action hotfix end to end (identical hunk to #444, merges cleanly). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
sanketsudake
added a commit
that referenced
this pull request
Jun 6, 2026
…n from master which supersedes this branch's jvm-job hunk
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.
What
Hotfix for a regression that #436 merged:
engineerd/setup-kind@v0.6.2fails withFile not found: .../dist/main/index.js(the tagged commit doesn't contain the compiled action bundle), which breaks thesetup-clusterstep for every env CI job. Surfaced on #438's first post-merge run.setup-cluster: switch to the maintainedhelm/kind-action@v1.14.0(SHA-pinned), passingnode_image/version/configthrough andcluster_name: kindso thekind-kindkubectl context andkind load docker-imagedefaults keep working.collect-fission-dump: best-effort now — a missing fission CLI (setup failed before installing it) or an empty dump no longer masks the original job failure (if-no-files-found: ignore).Why it slipped through
#436 touched no env directories, so the path-filtered jobs all skipped and the composite-action change was never exercised pre-merge. To avoid repeating that, this PR includes a small genuine fix under
perl/(broken examples link in the README) so the perl job runssetup-clusterend-to-end on this PR — green CI here means the new kind action actually works.Verification
🤖 Generated with Claude Code