diff --git a/.github/workflows/http3-linux.yml b/.github/workflows/http3-linux.yml index 03bf8aba98..4b20eaea97 100644 --- a/.github/workflows/http3-linux.yml +++ b/.github/workflows/http3-linux.yml @@ -54,7 +54,7 @@ env: # renovate: datasource=github-tags depName=cloudflare/quiche versioning=semver registryUrl=https://github.com QUICHE_VERSION: 0.29.2 # renovate: datasource=github-tags depName=wolfSSL/wolfssl versioning=semver extractVersion=^v?(?.+)-stable$ registryUrl=https://github.com - WOLFSSL_VERSION: 5.9.1 + WOLFSSL_VERSION: 5.9.2 # renovate: datasource=github-tags depName=ngtcp2/nghttp3 versioning=semver registryUrl=https://github.com NGHTTP3_VERSION: 1.17.0 # renovate: datasource=github-tags depName=ngtcp2/ngtcp2 versioning=semver registryUrl=https://github.com @@ -327,6 +327,9 @@ jobs: cd ~ git clone --quiet --depth 1 --branch "v${WOLFSSL_VERSION}-stable" https://github.com/wolfSSL/wolfssl cd wolfssl + curl --disable --fail --silent --show-error --connect-timeout 15 --max-time 30 --retry 6 --retry-connrefused \ + https://github.com/wolfSSL/wolfssl/commit/7dd269fc52228cbc854b9f0ed8c3938b95d8a2c8.diff --output pkg.patch + patch -p1 -i pkg.patch ./autogen.sh ./configure --disable-dependency-tracking --prefix="$PWD"/build --enable-all --enable-quic \ --disable-benchmark --disable-crypttests --disable-examples diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 70fc045fbd..95313c7661 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -56,7 +56,7 @@ env: # renovate: datasource=github-tags depName=rustls/rustls-ffi versioning=semver registryUrl=https://github.com RUSTLS_VERSION: 0.15.3 # renovate: datasource=github-tags depName=wolfSSL/wolfssl versioning=semver extractVersion=^v?(?.+)-stable$ registryUrl=https://github.com - WOLFSSL_VERSION: 5.9.1 + WOLFSSL_VERSION: 5.9.2 jobs: linux: @@ -598,6 +598,9 @@ jobs: --location --proto-redir =https "https://github.com/wolfSSL/wolfssl/archive/v${WOLFSSL_VERSION}-stable.tar.gz" --output pkg.bin sha256sum pkg.bin && tar -xzf pkg.bin && rm -f pkg.bin cd "wolfssl-${WOLFSSL_VERSION}-stable" + curl --disable --fail --silent --show-error --connect-timeout 15 --max-time 30 --retry 6 --retry-connrefused \ + https://github.com/wolfSSL/wolfssl/commit/7dd269fc52228cbc854b9f0ed8c3938b95d8a2c8.diff --output pkg.patch + patch -p1 -i pkg.patch ./autogen.sh ./configure --disable-dependency-tracking --prefix=/home/runner/wolfssl-all \ --enable-tls13 --enable-harden --enable-all \ @@ -621,6 +624,9 @@ jobs: --location --proto-redir =https "https://github.com/wolfSSL/wolfssl/archive/v${WOLFSSL_VERSION}-stable.tar.gz" --output pkg.bin sha256sum pkg.bin && tar -xzf pkg.bin && rm -f pkg.bin cd "wolfssl-${WOLFSSL_VERSION}-stable" + curl --disable --fail --silent --show-error --connect-timeout 15 --max-time 30 --retry 6 --retry-connrefused \ + https://github.com/wolfSSL/wolfssl/commit/7dd269fc52228cbc854b9f0ed8c3938b95d8a2c8.diff --output pkg.patch + patch -p1 -i pkg.patch ./autogen.sh ./configure --disable-dependency-tracking --prefix=/home/runner/wolfssl-opensslextra \ --enable-tls13 --enable-harden --enable-ech --enable-ed25519 --enable-opensslextra \ @@ -644,6 +650,9 @@ jobs: --location --proto-redir =https "https://github.com/wolfSSL/wolfssl/archive/v${WOLFSSL_VERSION}-stable.tar.gz" --output pkg.bin sha256sum pkg.bin && tar -xzf pkg.bin && rm -f pkg.bin cd "wolfssl-${WOLFSSL_VERSION}-stable" + curl --disable --fail --silent --show-error --connect-timeout 15 --max-time 30 --retry 6 --retry-connrefused \ + https://github.com/wolfSSL/wolfssl/commit/7dd269fc52228cbc854b9f0ed8c3938b95d8a2c8.diff --output pkg.patch + patch -p1 -i pkg.patch ./autogen.sh ./configure --disable-dependency-tracking --prefix=/home/runner/wolfssl-opensslextra \ --enable-tls13 --enable-harden --enable-ech --enable-ed25519 --enable-opensslextra \