Skip to content

Commit 952fb82

Browse files
committed
chore: update distro releases
Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
1 parent 897f49a commit 952fb82

2 files changed

Lines changed: 16 additions & 12 deletions

File tree

config_test.go

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ func TestConfig(t *testing.T) {
6868
image string
6969
config Config
7070
}{
71-
{
72-
image: "ubuntu:18.04",
73-
config: configDebian,
74-
},
7571
{
7672
image: "ubuntu:20.04",
7773
config: configUbuntu,
@@ -80,20 +76,24 @@ func TestConfig(t *testing.T) {
8076
image: "ubuntu:22.04",
8177
config: configUbuntu,
8278
},
79+
{
80+
image: "ubuntu:24.04",
81+
config: configUbuntu,
82+
},
8383
{
8484
image: "ubuntu:latest",
8585
config: configUbuntu,
8686
},
8787
{
88-
image: "debian:9",
88+
image: "debian:11",
8989
config: configDebian,
9090
},
9191
{
92-
image: "debian:10",
92+
image: "debian:12",
9393
config: configDebian,
9494
},
9595
{
96-
image: "debian:11",
96+
image: "debian:13",
9797
config: configDebian,
9898
},
9999
{
@@ -105,7 +105,7 @@ func TestConfig(t *testing.T) {
105105
config: configDebian,
106106
},
107107
{
108-
image: "alpine:3.16",
108+
image: "alpine:3.20",
109109
config: configAlpine,
110110
},
111111
{
@@ -120,6 +120,10 @@ func TestConfig(t *testing.T) {
120120
image: "quay.io/centos/centos:stream9",
121121
config: configCentOS,
122122
},
123+
{
124+
image: "quay.io/centos/centos:stream10",
125+
config: configCentOS,
126+
},
123127
}
124128
exec.SetDebug(true)
125129

e2e/e2e_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ type img struct {
4747

4848
var (
4949
images = []img{
50-
{name: "alpine:3.17", luks: "Enter passphrase for /dev/sda2:"},
50+
{name: "alpine:3.123", luks: "Enter passphrase for /dev/sda2:"},
5151
{name: "ubuntu:20.04", luks: "Please unlock disk root:"},
5252
{name: "ubuntu:22.04", luks: "Please unlock disk root:"},
53-
{name: "debian:10", luks: "Please unlock disk root:"},
54-
{name: "debian:11", luks: "Please unlock disk root:"},
53+
{name: "debian:12", luks: "Please unlock disk root:"},
54+
{name: "debian:13", luks: "Please unlock disk root:"},
5555
{name: "centos:8", luks: "Please enter passphrase for disk"},
56-
{name: "quay.io/centos/centos:stream9", luks: "Please enter passphrase for disk"},
56+
{name: "quay.io/centos/centos:stream10", luks: "Please enter passphrase for disk"},
5757
}
5858
imgNames = func() []string {
5959
var imgs []string

0 commit comments

Comments
 (0)