Pin templ version in docker-deps (fixes Docker CI build) - #356
Merged
Conversation
docker-deps installed templ@latest, which now requires Go >= 1.25 while the Dockerfile builder image is golang:1.24 — every Build and Push CI job has failed since 2026-05-22. ci-deps already pins templ to the go.mod version; this applies the same pattern so Docker builds are reproducible and match the module's tested version. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Owner
Author
|
Independent review — LGTM ✅ Verified:
One note: this pins to whatever go.mod says, so future templ upgrades happen via 🤖 Posted on behalf of |
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.
The
docker-depsMake target installedtempl@latest, which as of v0.3.1020 requires Go >= 1.25 — but the Dockerfile builder image isgolang:1.24withGOTOOLCHAIN=local, so every Build and Push CI job has failed since 2026-05-22 (first failing run: https://github.com/joestump/spotter/actions/runs/26277286030).ci-depsalready pins templ to the version ingo.mod; this applies the identical pattern todocker-deps, making the Docker build reproducible and consistent with the tested module version.Found while working the Spotter remediation board (https://github.com/users/joestump/projects/98) — this pre-existing failure was masking Docker-build signal on every remediation PR.
🤖 Posted on behalf of
@joestumpby Claude.