Skip to content

Commit

Permalink
fix(suse): Add SLES 15.6 and Leap 15.6 (#6964)
Browse files Browse the repository at this point in the history
Signed-off-by: Dirk Müller <dirk@dmllr.de>
  • Loading branch information
dirkmueller committed Jun 19, 2024
1 parent f18d035 commit 5ee4e9d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkg/detector/ospkg/suse/suse.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ var (
"15.2": time.Date(2021, 12, 31, 23, 59, 59, 0, time.UTC),
"15.3": time.Date(2022, 12, 31, 23, 59, 59, 0, time.UTC),
"15.4": time.Date(2023, 12, 31, 23, 59, 59, 0, time.UTC),
"15.5": time.Date(2028, 12, 31, 23, 59, 59, 0, time.UTC),
"15.5": time.Date(2024, 12, 31, 23, 59, 59, 0, time.UTC),
"15.6": time.Date(2031, 7, 31, 23, 59, 59, 0, time.UTC),
// 6 months after SLES 15 SP7 release
// "15.6": time.Date(2028, 12, 31, 23, 59, 59, 0, time.UTC),
// "15.7": time.Date(2031, 7, 31, 23, 59, 59, 0, time.UTC),
}

opensuseEolDates = map[string]time.Time{
Expand All @@ -55,6 +56,7 @@ var (
"15.3": time.Date(2022, 11, 30, 23, 59, 59, 0, time.UTC),
"15.4": time.Date(2023, 11, 30, 23, 59, 59, 0, time.UTC),
"15.5": time.Date(2024, 12, 31, 23, 59, 59, 0, time.UTC),
"15.6": time.Date(2025, 12, 31, 23, 59, 59, 0, time.UTC),
}
)

Expand Down

0 comments on commit 5ee4e9d

Please sign in to comment.