Skip to content

Commit fee6915

Browse files
authored
Bump framework and auroraboot image (#3077)
* Bump framework and auroraboot image Signed-off-by: Dimitris Karakasilis <[email protected]> * Bump k3s to the newest package Signed-off-by: Dimitris Karakasilis <[email protected]> * Fix test Signed-off-by: Dimitris Karakasilis <[email protected]> --------- Signed-off-by: Dimitris Karakasilis <[email protected]>
1 parent eaf8644 commit fee6915

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/uki.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
family: ubuntu
2828
base_image: ubuntu:24.04
2929
variant: standard
30-
k3s_version: 1.31.2 # we need to use a matrix like we do in the other pipelines, but adding manually now just to see if this makes it work
30+
k3s_version: 1.31.3 # we need to use a matrix like we do in the other pipelines, but adding manually now just to see if this makes it work
3131
- flavor: fedora
3232
family: rhel
3333
flavor_release: 40

Earthfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ ARG TRIVY_VERSION=0.57.1
88
# renovate: datasource=docker depName=anchore/grype versioning=semver
99
ARG GRYPE_VERSION=v0.85.0
1010
# renovate: datasource=docker depName=quay.io/kairos/framework versioning=semver
11-
ARG KAIROS_FRAMEWORK_VERSION=v2.14.5
11+
ARG KAIROS_FRAMEWORK_VERSION=v2.14.6
1212
# renovate: datasource=docker depName=quay.io/kairos/auroraboot versioning=semver
13-
ARG AURORABOOT_VERSION=v0.4.1
13+
ARG AURORABOOT_VERSION=v0.4.3
1414
# renovate: datasource=docker depName=golang versioning=semver
1515
ARG GO_VERSION=1.23
1616
# renovate: datasource=docker depName=hadolint/hadolint

tests/uki_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ var _ = Describe("kairos UKI test", Label("uki"), Ordered, func() {
287287
out, err = vm.Sudo("cat /sys/firmware/efi/efivars/LoaderEntrySelected-*")
288288
Expect(err).ToNot(HaveOccurred(), out)
289289
selectedEntry := removeSpecialChars(out)
290-
Expect(selectedEntry).To(Equal(fmt.Sprintf("%s.conf", strings.TrimSpace(os.Getenv("EXPECTED_SINGLE_ENTRY")))))
290+
Expect(selectedEntry).To(Equal(fmt.Sprintf("%s+3.conf", strings.TrimSpace(os.Getenv("EXPECTED_SINGLE_ENTRY")))))
291291
})
292292
})
293293

0 commit comments

Comments
 (0)