Add docker images built using FIPS binaries #894
+167
−6
Merged
probelabs / Visor: style
succeeded
Sep 23, 2025 in 4m 32s
✅ Check Passed
style check completed successfully with no issues found.
Details
📊 Summary
- Total Issues: 2
🐛 Issues by Category
🎨 Style (2)
- ℹ️ ci/goreleaser/goreleleaser.yml:170 - The
dockerssection contains significant duplication. Theextra_fileslist and manybuild_flag_templatesare identical across multiple docker build configurations. - ℹ️ ci/goreleaser/goreleleaser.yml:241 - The
docker_manifestssection contains duplicatedimage_templatesfor different tag formats (e.g., full tag, major.minor, major).
Generated by Visor - AI-powered code review
Annotations
Check notice on line 240 in ci/goreleaser/goreleleaser.yml
probelabs / Visor: style
style Issue
The `dockers` section contains significant duplication. The `extra_files` list and many `build_flag_templates` are identical across multiple docker build configurations.
Raw output
To improve maintainability and reduce redundancy, consider using YAML anchors and aliases to define common blocks of configuration once and reuse them. For example, the `extra_files` list can be defined as an anchor and referenced in each docker configuration.
Check notice on line 264 in ci/goreleaser/goreleleaser.yml
probelabs / Visor: style
style Issue
The `docker_manifests` section contains duplicated `image_templates` for different tag formats (e.g., full tag, major.minor, major).
Raw output
While `goreleaser`'s configuration schema might limit the use of anchors within `name_template` and `image_templates` combinations, it's worth reviewing if a more concise structure can be achieved to avoid repeating the list of images for each manifest tag version.
Loading