deps: update osbuild/images to v0.3.0

Bump the required osbuild version to v93 (due to the systemd units
change).

Pin the new osbuild version in Schutzfile.

Update repo snapshots in Schutzfile due to osbuild v93 depending on
new selinux-policy build.
This commit is contained in:
Achilleas Koutsou 2023-08-17 16:33:11 +02:00 committed by Tomáš Hozza
parent 715bdba1bf
commit d4332f85d3
62 changed files with 1270 additions and 540 deletions

View file

@ -57,7 +57,7 @@ func (img *MyContainer) InstantiateManifest(m *manifest.Manifest,
os.OSCustomizations.Timezone = "UTC"
// create an OCI container containing the OS tree created above
container := manifest.NewOCIContainer(m, build, os)
container := manifest.NewOCIContainer(build, os)
artifact := container.Export()
return artifact, nil

View file

@ -50,7 +50,7 @@ func (img *MyImage) InstantiateManifest(m *manifest.Manifest,
os.KernelName = "kernel" // use the default fedora kernel
// create a raw image containing the OS tree created above
raw := manifest.NewRawImage(m, build, os)
raw := manifest.NewRawImage(build, os)
artifact := raw.Export()
return artifact, nil