From 2b06cb80456c868ec391d7e0a03a98ae1e698639 Mon Sep 17 00:00:00 2001 From: Joel Guittet Date: Thu, 18 Jul 2024 00:13:58 +0200 Subject: [PATCH] ci: update curl to the latest release --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9d1088..cad0415 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,8 +66,8 @@ jobs: uses: SonarSource/sonarcloud-github-c-cpp@v2 - name: Install libcurl run: | - wget -q -O - https://github.com/curl/curl/archive/refs/tags/curl-8_1_2.tar.gz | tar xz - cd curl-curl-8_1_2 && autoreconf -fi && ./configure --with-openssl --enable-websockets && make -j$(nproc) && sudo make install + wget -q -O - https://github.com/curl/curl/archive/refs/tags/curl-8_8_0.tar.gz | tar xz + cd curl-curl-8_8_0 && autoreconf -fi && ./configure --with-openssl --enable-websockets && make -j$(nproc) && sudo make install - name: Install msgpack-c run: | wget -q -O - https://github.com/msgpack/msgpack-c/archive/refs/tags/c-6.0.0.tar.gz | tar xz