Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

actions: bump {Libre,Open}SSL versions #808

Merged
merged 2 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .actions/build-linux-openssl3-clang
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ FAKEROOT="$(mktemp -d)"
# Check exports.
(cd src && ./diff_exports.sh)

# Build and install OpenSSL 3.0.13.
git clone --branch openssl-3.0.13 \
# Build and install OpenSSL 3.0.14.
git clone --branch openssl-3.0.14 \
--depth=1 https://github.com/openssl/openssl
cd openssl
./Configure linux-x86_64-clang --prefix="${FAKEROOT}" \
Expand Down
4 changes: 2 additions & 2 deletions .actions/build-linux-openssl3-gcc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
${CC} --version
FAKEROOT="$(mktemp -d)"

# Build and install OpenSSL 3.0.13.
git clone --branch openssl-3.0.13 \
# Build and install OpenSSL 3.0.14.
git clone --branch openssl-3.0.14 \
--depth=1 https://github.com/openssl/openssl
cd openssl
./Configure linux-x86_64 --prefix="${FAKEROOT}" \
Expand Down
4 changes: 2 additions & 2 deletions .actions/build-linux-openssl3-i686-w64-mingw32-gcc
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ make -j"$(nproc)" -C build
sudo make -C build install
cd ..

# Build and install OpenSSL 3.0.13.
git clone --branch openssl-3.0.13 \
# Build and install OpenSSL 3.0.14.
git clone --branch openssl-3.0.14 \
--depth=1 https://github.com/openssl/openssl
cd openssl
./Configure mingw --prefix=/fakeroot --openssldir=/fakeroot/openssl \
Expand Down
2 changes: 1 addition & 1 deletion .actions/fuzz-linux
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LIBCBOR_TAG="v0.11.0"
LIBCBOR_ASAN="address alignment bounds"
LIBCBOR_MSAN="memory"
OPENSSL_URL="https://github.com/openssl/openssl"
OPENSSL_TAG="openssl-3.0.13"
OPENSSL_TAG="openssl-3.0.14"
ZLIB_URL="https://github.com/madler/zlib"
ZLIB_TAG="v1.3.1"
ZLIB_ASAN="address alignment bounds undefined"
Expand Down
2 changes: 1 addition & 1 deletion windows/const.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
New-Variable -Name 'LIBRESSL_URL' `
-Value 'https://ftp.openbsd.org/pub/OpenBSD/LibreSSL' `
-Option Constant
New-Variable -Name 'LIBRESSL' -Value 'libressl-3.9.1' -Option Constant
New-Variable -Name 'LIBRESSL' -Value 'libressl-3.9.2' -Option Constant
New-Variable -Name 'CRYPTO_LIBRARIES' -Value 'crypto' -Option Constant

# libcbor coordinates.
Expand Down
Loading