Skip to content

Commit

Permalink
Bump to v3.3.1
Browse files Browse the repository at this point in the history
When this repo was set up, OpenSSL 3.2.x was the stable release.

Per https://www.openssl.org/source/index.html the stable release series has advanced:

> Note: The latest stable version is the 3.3 series supported until 9th April 2026. Also available is the 3.2 series supported until 23rd November 2025
  • Loading branch information
nil4 committed Jun 28, 2024
1 parent 96c4772 commit e9d26ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
name: Build
runs-on: macos-14

env: # use tag version, if available, falling back to 3.2.1 (stable)
OPENSSL_VERSION: "${{ startsWith(github.ref, 'refs/tags/3.') && github.ref_name || '3.2.2' }}"
env: # use tag version, if available, falling back to 3.3.1 (stable)
OPENSSL_VERSION: "${{ startsWith(github.ref, 'refs/tags/3.') && github.ref_name || '3.3.1' }}"
PUBLISH_RELEASE: "${{ startsWith(github.ref, 'refs/tags/3.') && '1' || '0' }}"

steps:
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

OPENSSL_VERSION_STABLE="3.2.2" # https://www.openssl.org/source/index.html
OPENSSL_VERSION_STABLE="3.3.1" # https://www.openssl.org/source/index.html
IOS_VERSION_MIN="13.4"
MACOS_VERSION_MIN="11.0"
CODESIGN_ID="-"
Expand Down

0 comments on commit e9d26ce

Please sign in to comment.