Skip to content

Commit

Permalink
Bump framework and auroraboot image (kairos-io#3077)
Browse files Browse the repository at this point in the history
* Bump framework and auroraboot image

Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me>

* Bump k3s to the newest package

Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me>

* Fix test

Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me>

---------

Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me>
  • Loading branch information
jimmykarily authored Dec 12, 2024
1 parent eaf8644 commit fee6915
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/uki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
family: ubuntu
base_image: ubuntu:24.04
variant: standard
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
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
- flavor: fedora
family: rhel
flavor_release: 40
Expand Down
4 changes: 2 additions & 2 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ARG TRIVY_VERSION=0.57.1
# renovate: datasource=docker depName=anchore/grype versioning=semver
ARG GRYPE_VERSION=v0.85.0
# renovate: datasource=docker depName=quay.io/kairos/framework versioning=semver
ARG KAIROS_FRAMEWORK_VERSION=v2.14.5
ARG KAIROS_FRAMEWORK_VERSION=v2.14.6
# renovate: datasource=docker depName=quay.io/kairos/auroraboot versioning=semver
ARG AURORABOOT_VERSION=v0.4.1
ARG AURORABOOT_VERSION=v0.4.3
# renovate: datasource=docker depName=golang versioning=semver
ARG GO_VERSION=1.23
# renovate: datasource=docker depName=hadolint/hadolint
Expand Down
2 changes: 1 addition & 1 deletion tests/uki_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ var _ = Describe("kairos UKI test", Label("uki"), Ordered, func() {
out, err = vm.Sudo("cat /sys/firmware/efi/efivars/LoaderEntrySelected-*")
Expect(err).ToNot(HaveOccurred(), out)
selectedEntry := removeSpecialChars(out)
Expect(selectedEntry).To(Equal(fmt.Sprintf("%s.conf", strings.TrimSpace(os.Getenv("EXPECTED_SINGLE_ENTRY")))))
Expect(selectedEntry).To(Equal(fmt.Sprintf("%s+3.conf", strings.TrimSpace(os.Getenv("EXPECTED_SINGLE_ENTRY")))))
})
})

Expand Down

0 comments on commit fee6915

Please sign in to comment.