From ffbeea3f20c749d0ff3ab33cc693a5b8e9758ddf Mon Sep 17 00:00:00 2001 From: "brian m. carlson" Date: Wed, 1 Sep 2021 20:15:25 +0000 Subject: [PATCH] packagecloud: update OS versions Remove Ubuntu impish and AlmaLinux because they are not supported by packagecloud.io. Add Debian bookworm, which is currently testing, and SLES 15.3, which is the latest version. --- script/packagecloud.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/packagecloud.rb b/script/packagecloud.rb index e2b6910c..d86e6156 100755 --- a/script/packagecloud.rb +++ b/script/packagecloud.rb @@ -40,10 +40,10 @@ $distro_name_map = { "sles/12.5", "sles/15.0", "sles/15.1", - "sles/15.2", # Current + "sles/15.2", + "sles/15.3", # Current ], "centos/8" => [ - "almalinux/8", "el/8", "fedora/32", "fedora/33", @@ -68,9 +68,9 @@ $distro_name_map = { "ubuntu/focal", # EOL April 2025 "ubuntu/groovy", # EOL July 2021 "ubuntu/hirsute", # EOL January 2022 - "ubuntu/impish", # Current ], "debian/11" => [ + "debian/bookworm", # Current ] }