diff --git a/internal/common/common_linux.go b/internal/common/common_linux.go index b08cf33ae..a429e16a2 100644 --- a/internal/common/common_linux.go +++ b/internal/common/common_linux.go @@ -329,7 +329,7 @@ func GetOSReleaseWithContext(ctx context.Context) (platform string, version stri switch field[0] { case "ID": // use ID for lowercase platform = trimQuotes(field[1]) - case "VERSION": + case "VERSION_ID": version = trimQuotes(field[1]) } }