From 65e13fff4edaf7b8446074fc38fa02ec9022b404 Mon Sep 17 00:00:00 2001 From: Adrien Beraud <adrien.beraud@savoirfairelinux.com> Date: Fri, 14 Feb 2025 11:48:42 -0500 Subject: [PATCH] ci/github: update llhttp --- .github/workflows/ccpp.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index c9b78862..0e627051 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -1,7 +1,7 @@ name: C/C++ CI env: - LLHTTP_VERSION: "v9.2.0" + LLHTTP_VERSION: "v9.2.1" RESTINIO_VERSION: "0.7.3" EXPECTED_LITE_URL: "https://raw.githubusercontent.com/martinmoene/expected-lite/master/include/nonstd/expected.hpp" UBUNTU_FULL_DEPS: "libncurses5-dev libreadline-dev nettle-dev libasio-dev libgnutls28-dev libuv1-dev python3-pip python3-dev python3-setuptools libcppunit-dev libjsoncpp-dev autotools-dev autoconf libfmt-dev libmsgpack-dev libargon2-dev" @@ -20,8 +20,8 @@ jobs: - name: Install Dependencies run: | echo "Installing Ubuntu full dependencies:" - sudo apt update - sudo apt install -y $UBUNTU_FULL_DEPS + sudo apt-get update + sudo apt-get install -y $UBUNTU_FULL_DEPS - name: Install Cython run: sudo pip3 install Cython @@ -91,8 +91,8 @@ jobs: - name: Install Minimal Dependencies run: | echo "Installing Ubuntu minimal dependencies:" - sudo apt update - sudo apt install -y $UBUNTU_MINIMAL_DEPS + sudo apt-get update + sudo apt-get install -y $UBUNTU_MINIMAL_DEPS - name: Configure project with CMake run: | -- GitLab