We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212f078 commit 29f0347Copy full SHA for 29f0347
docs/docs/coverage/os/index.md
@@ -27,7 +27,7 @@ Trivy supports operating systems for
27
| [openSUSE Tumbleweed](suse.md) | (n/a) | zypper/rpm |
28
| [SUSE Linux Enterprise](suse.md) | 11, 12, 15 | zypper/rpm |
29
| [SUSE Linux Enterprise Micro](suse.md) | 5, 6 | zypper/rpm |
30
-| [Photon OS](photon.md) | 1.0, 2.0, 3.0, 4.0 | tndf/yum/rpm |
+| [Photon OS](photon.md) | 1.0, 2.0, 3.0, 4.0, 5.0 | tndf/yum/rpm |
31
| [CoreOS](coreos.md)[^3] | All versions (SBOM only) | rpm |
32
| [Echo](echo.md) | (n/a) | apt/dpkg |
33
| [Debian GNU/Linux](debian.md) | 7, 8, 9, 10, 11, 12 | apt/dpkg |
pkg/detector/ospkg/photon/photon.go
@@ -20,10 +20,11 @@ var (
20
eolDates = map[string]time.Time{
21
"1.0": time.Date(2022, 2, 28, 23, 59, 59, 0, time.UTC),
22
"2.0": time.Date(2022, 12, 31, 23, 59, 59, 0, time.UTC),
23
- // The following versions don't have the EOL dates yet.
24
- // See https://blogs.vmware.com/vsphere/2022/01/photon-1-x-end-of-support-announcement.html
25
- "3.0": time.Date(2024, 6, 30, 23, 59, 59, 0, time.UTC),
26
- "4.0": time.Date(2025, 12, 31, 23, 59, 59, 0, time.UTC),
+ "3.0": time.Date(2024, 3, 31, 23, 59, 59, 0, time.UTC),
+ "4.0": time.Date(2026, 3, 31, 23, 59, 59, 0, time.UTC),
+ // The following version don't have the EOL dates yet.
+ // https://blogs.vmware.com/cloud-foundation/2023/05/02/announcing-photon-os-5-0-general-availability/
+ "5.0": time.Date(3000, 1, 1, 23, 59, 59, 0, time.UTC),
}
)
0 commit comments