From 0534440f898a01e1297e5ddf1d7c4608ed341e62 Mon Sep 17 00:00:00 2001 From: nil4 Date: Fri, 8 Nov 2024 10:54:53 +0100 Subject: [PATCH] Bump OpenSSL to v3.4.0 ref. https://openssl-library.org/news/openssl-3.4-notes/#major-changes-between-openssl-33-and-openssl-340-22-oct-2024 --- .github/workflows/build.yml | 2 +- scripts/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fef9bae..85d9a00 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: runs-on: macos-14 env: # use tag version, if available, falling back to 1.21.3 (stable) - MITKERBEROS_VERSION: "${{ startsWith(github.ref, 'refs/tags/1.') && github.ref_name || '1.21.3_openssl-3.3.2' }}" + MITKERBEROS_VERSION: "${{ startsWith(github.ref, 'refs/tags/1.') && github.ref_name || '1.21.3_openssl-3.4.0' }}" PUBLISH_RELEASE: "${{ startsWith(github.ref, 'refs/tags/1.') && '1' || '0' }}" steps: diff --git a/scripts/build.sh b/scripts/build.sh index bc71af8..385121a 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -2,7 +2,7 @@ set -e -MITKERBEROS_VERSION_STABLE="1.21.3_openssl-3.3.2" # https://kerberos.org/dist/ +MITKERBEROS_VERSION_STABLE="1.21.3_openssl-3.4.0" # https://kerberos.org/dist/ IOS_VERSION_MIN="13.4" MACOS_VERSION_MIN="11.0"