From f50b96a81571d0bf9f68c5dc46b182bbf2ff6089 Mon Sep 17 00:00:00 2001 From: DmitriyLewen <91113035+DmitriyLewen@users.noreply.github.com> Date: Fri, 12 Dec 2025 12:55:09 +0600 Subject: [PATCH] chore(alpine): add EOL date for alpine 3.23 (#9934) --- pkg/detector/ospkg/alpine/alpine.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/detector/ospkg/alpine/alpine.go b/pkg/detector/ospkg/alpine/alpine.go index efa7af4676..86239c6f4a 100644 --- a/pkg/detector/ospkg/alpine/alpine.go +++ b/pkg/detector/ospkg/alpine/alpine.go @@ -50,6 +50,7 @@ var eolDates = map[string]time.Time{ "3.20": time.Date(2026, 4, 1, 23, 59, 59, 0, time.UTC), "3.21": time.Date(2026, 12, 5, 23, 59, 59, 0, time.UTC), "3.22": time.Date(2027, 4, 30, 23, 59, 59, 0, time.UTC), + "3.23": time.Date(2027, 11, 1, 23, 59, 59, 0, time.UTC), "edge": time.Date(9999, 1, 1, 0, 0, 0, 0, time.UTC), }