chore(perl,tensorflow-serving): pin base images and modernize builds#444
Merged
Conversation
perl: - Pin perl:latest -> perl:5.42 (reproducible builds); envconfig runtimeVersion 5.42, version 1.32.0 tensorflow-serving: - Pin unpinned tensorflow/serving -> tensorflow/serving:2.20.0 (latest stable); upstream publishes amd64 only, so the Makefile target restricts PLATFORMS to linux/amd64 - GO_VERSION 1.13 (EOL 2021) -> 1.26 with go-modules migration: the Dockerfile used a pre-modules GOPATH layout and bare `go get`, which modern Go refuses; now go mod init/tidy/build (resolves pkg/errors + zap) - envconfig runtimeVersion 2.20.0, version 1.32.0 CI: perl and tensorflow jobs drop hiberbee/github-action-skaffold (pins skaffold 2.3.1, which cannot parse our skaffold/v4beta13 config) in favour of make skaffold-run, same as #442/#443. environments.json regenerated. Verified locally: perl image builds and boots (Dancer2 routes respond on perl 5.42.2); tensorflow image builds for linux/amd64 with the modules migration; make dry-run confirms the PLATFORMS override produces a valid amd64-only push for the release flow. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
sanketsudake
added a commit
that referenced
this pull request
Jun 6, 2026
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
* ci: fix broken setup-kind action with helm/kind-action 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> * ci(perl): run skaffold via make instead of the stale skaffold action 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> --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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
Final PR of the dependency-update series (#436–#443).
perl
FROM perl:latest→perl:5.42— the env was unpinned and unreproducibleenvconfig.json:runtimeVersion5.42,version1.31.1 → 1.32.0tensorflow-serving
FROM tensorflow/serving(unpinnedlatest) →tensorflow/serving:2.20.0. Upstream publishes amd64 only, so the Makefile target now carriesPLATFORMS=linux/amd64(dry-run verified the release flow produces a valid amd64-only push).go get, which modern Go refuses. Nowgo mod init && go mod tidy && go build(resolvespkg/errors+zapfrom server.go's imports).envconfig.json:runtimeVersionlatest→ 2.20.0,version→ 1.32.0CI
hiberbee/github-action-skaffold@1.27.0(pins skaffold 2.3.1, can't parse ourskaffold/v4beta13config — same pre-existing breakage fixed for ruby/php in chore(ruby): upgrade to Ruby 3.4 from EOL 2.6.1 #442/feat(php): migrate environment from EOL PHP 7.3 to PHP 8.3 #443) toSKAFFOLD_PROFILE=<env> make skaffold-run.environments.jsonregenerated.Verification (local)
make -nconfirms the target-specific PLATFORMS override composes with the release workflow🤖 Generated with Claude Code