go.mod: update osbuild/images to v0.123.0

Includes modularity support.
This commit is contained in:
Sanne Raymaekers 2025-03-10 11:29:18 +01:00 committed by Tomáš Hozza
parent 5e3d6aff54
commit 536b7d95c5
37 changed files with 655 additions and 157 deletions

View file

@ -0,0 +1,14 @@
package dependencies
import (
_ "embed"
)
//go:embed osbuild
var minimumOSBuildVersion string
// MinimumOSBuildVersion returns the minimum version of osbuild required by this
// version of images module.
func MinimumOSBuildVersion() string {
return minimumOSBuildVersion
}

View file

@ -0,0 +1 @@
139