mirror of
https://github.com/ivuorinen/actions.git
synced 2026-03-09 04:56:55 +00:00
fix: correct sed pattern in go-build Dockerfile parsing
Remove unintended space in sed replacement pattern that was extracting golang version from Dockerfile. Before: s/.*golang:([0-9]+(\.[0-9]+)*)(-[^:]*)?.*/ \1/p After: s/.*golang:([0-9]+(\.[0-9]+)*)(-[^:]*)?.*/\1/p The leading space in the replacement would have caused version strings to have unwanted whitespace, potentially breaking version validation.
This commit is contained in: