fix(config/os): Fix EOL date of ubuntu 23.10 (#1972)
cf. https://lists.ubuntu.com/archives/ubuntu-announce/2024-June/000302.html
This commit is contained in:
committed by
GitHub
parent
436341a4a5
commit
86d3681d8d
@@ -197,7 +197,7 @@ func GetEOL(family, release string) (eol EOL, found bool) {
|
||||
StandardSupportUntil: time.Date(2024, 1, 25, 23, 59, 59, 0, time.UTC),
|
||||
},
|
||||
"23.10": {
|
||||
StandardSupportUntil: time.Date(2024, 7, 31, 23, 59, 59, 0, time.UTC),
|
||||
StandardSupportUntil: time.Date(2024, 7, 11, 23, 59, 59, 0, time.UTC),
|
||||
},
|
||||
"24.04": {
|
||||
StandardSupportUntil: time.Date(2029, 6, 30, 23, 59, 59, 0, time.UTC),
|
||||
|
||||
@@ -366,7 +366,7 @@ func TestEOL_IsStandardSupportEnded(t *testing.T) {
|
||||
{
|
||||
name: "Ubuntu 23.10 supported",
|
||||
fields: fields{family: Ubuntu, release: "23.10"},
|
||||
now: time.Date(2024, 7, 31, 23, 59, 59, 0, time.UTC),
|
||||
now: time.Date(2024, 7, 11, 23, 59, 59, 0, time.UTC),
|
||||
found: true,
|
||||
stdEnded: false,
|
||||
extEnded: false,
|
||||
|
||||
Reference in New Issue
Block a user