[PATCH liburing 3/4] ci: Upgrade clang version to 23

Ammar Faizi <[email protected]> Sat, 25 Jul 2026 05:59:04 +0700
Newsgroups org.kernel.vger.io-uring
Message-ID <[email protected]>
Clang 23 is now available. Upgrade the clang version used in the CI.

Cc: Christian Mazakas <[email protected]>
Signed-off-by: Ammar Faizi <[email protected]>
---
 .github/workflows/ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 842cdead6fef..1149fabf58f2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -206,9 +206,9 @@ jobs:
         run: |
           if [[ "${{matrix.build_args.cc_pkg}}" == "clang" ]]; then \
             wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh; \
-            sudo bash /tmp/llvm.sh 22; \
-            sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-22 400; \
-            sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-22 400; \
+            sudo bash /tmp/llvm.sh 23; \
+            sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-23 400; \
+            sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-23 400; \
           else \
             sudo apt-get update -y; \
             sudo apt-get install -y ${{matrix.build_args.cc_pkg}} ${{matrix.build_args.cxx_pkg}}; \
-- 
Ammar Faizi