From 4a868146dd2694c28ffb27ed102220d83984ddaf Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Thu, 30 Apr 2026 11:13:10 +0200 Subject: [PATCH] Fix openSUSE 15.6 GitHub actions The runner image ships libncurses6-6.1-150000.5.33.1, but the only ncurses-devel available in the configured repos is 6.1-150000.5.30.1, which requires an exact-version match on libncurses6. --- .github/workflows/linux.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.bash b/.github/workflows/linux.bash index 296b6a88558..3b41dc145e6 100755 --- a/.github/workflows/linux.bash +++ b/.github/workflows/linux.bash @@ -61,7 +61,7 @@ case "$DISTRO" in ;; *suse*) - zypper in -y bison ccache cmake flex gcc-c++ ninja rpm-config-SUSE \ + zypper in -y --allow-downgrade bison ccache cmake flex gcc-c++ ninja rpm-config-SUSE \ {lib{edit,mariadb,openssl},ncurses,postgresql,systemd,protobuf}-devel \ libboost_{context,coroutine,filesystem,iostreams,program_options,regex,system,test,thread}-devel ;;