From b4d65158ad6cbf54cc9a895effe674da564c6a43 Mon Sep 17 00:00:00 2001 From: Ludvig Michaelsson Date: Mon, 30 Oct 2023 09:10:18 +0100 Subject: [PATCH] actions: bump OpenSSL 3 to 3.0.12 --- .actions/build-linux-openssl3-clang | 4 ++-- .actions/build-linux-openssl3-gcc | 4 ++-- .actions/build-linux-openssl3-i686-w64-mingw32-gcc | 2 +- .actions/fuzz-linux | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.actions/build-linux-openssl3-clang b/.actions/build-linux-openssl3-clang index 8762981d..2383e51a 100755 --- a/.actions/build-linux-openssl3-clang +++ b/.actions/build-linux-openssl3-clang @@ -12,8 +12,8 @@ FAKEROOT="$(mktemp -d)" # Check exports. (cd src && ./diff_exports.sh) -# Build and install OpenSSL 3.0.11. -git clone --branch openssl-3.0.11 \ +# Build and install OpenSSL 3.0.12. +git clone --branch openssl-3.0.12 \ --depth=1 https://github.com/openssl/openssl cd openssl ./Configure linux-x86_64-clang --prefix="${FAKEROOT}" \ diff --git a/.actions/build-linux-openssl3-gcc b/.actions/build-linux-openssl3-gcc index 8f7b6c6a..344fc12b 100755 --- a/.actions/build-linux-openssl3-gcc +++ b/.actions/build-linux-openssl3-gcc @@ -8,8 +8,8 @@ ${CC} --version FAKEROOT="$(mktemp -d)" -# Build and install OpenSSL 3.0.11. -git clone --branch openssl-3.0.11 \ +# Build and install OpenSSL 3.0.12. +git clone --branch openssl-3.0.12 \ --depth=1 https://github.com/openssl/openssl cd openssl ./Configure linux-x86_64 --prefix="${FAKEROOT}" \ diff --git a/.actions/build-linux-openssl3-i686-w64-mingw32-gcc b/.actions/build-linux-openssl3-i686-w64-mingw32-gcc index b945f0df..3bbb141d 100755 --- a/.actions/build-linux-openssl3-i686-w64-mingw32-gcc +++ b/.actions/build-linux-openssl3-i686-w64-mingw32-gcc @@ -33,7 +33,7 @@ sudo make -C build install cd .. # Build and install OpenSSL 3.0.11. -git clone --branch openssl-3.0.11 \ +git clone --branch openssl-3.0.12 \ --depth=1 https://github.com/openssl/openssl cd openssl ./Configure mingw --prefix=/fakeroot --openssldir=/fakeroot/openssl \ diff --git a/.actions/fuzz-linux b/.actions/fuzz-linux index a5257710..fc95c9dd 100755 --- a/.actions/fuzz-linux +++ b/.actions/fuzz-linux @@ -10,7 +10,7 @@ LIBCBOR_TAG="v0.10.1" LIBCBOR_ASAN="address alignment bounds" LIBCBOR_MSAN="memory" OPENSSL_URL="https://github.com/openssl/openssl" -OPENSSL_TAG="openssl-3.0.11" +OPENSSL_TAG="openssl-3.0.12" ZLIB_URL="https://github.com/madler/zlib" ZLIB_TAG="v1.3" ZLIB_ASAN="address alignment bounds undefined"