From eddea3884ad1866a9049b6bea604067fd07847b2 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Mon, 6 Apr 2026 09:22:28 -0600 Subject: [PATCH] pin OpenVPN version until BN_bn2binpad is added --- .github/workflows/openvpn.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/openvpn.yml b/.github/workflows/openvpn.yml index 34ea287518..6fcfd1b7ec 100644 --- a/.github/workflows/openvpn.yml +++ b/.github/workflows/openvpn.yml @@ -42,8 +42,9 @@ jobs: strategy: fail-fast: false matrix: - # List of refs to test - ref: [ release/2.6, master ] + # Pinned refs: avoid OpenVPN master until wolfSSL adds any new OpenSSL + # APIs it adopts (e.g. BN_bn2binpad). release/2.6 + latest stable tag. + ref: [ release/2.6, v2.6.19 ] name: ${{ matrix.ref }} if: github.repository_owner == 'wolfssl' runs-on: ubuntu-24.04