kota65535 / github-openvpn-connect-action

GitHub Action for connecting to OpenVPN server.
MIT License
82 stars 55 forks source link

Any plans to support openvpn3 #71

Open bfichter opened 3 weeks ago

bfichter commented 3 weeks ago

Hello!

I am trying to use this action, but am running into this issue:

2024-06-21 19:16:17 AUTH: Received control message: AUTH_FAILED,The version of OpenVPN Connect client installed on this device is not compatible. Please download the latest version from https://openvpn.net/vpn-client/

We manage our VPN with CloudConnexa, and I believe this requires using openvpn3. I'm currently installing openvpn as per the README here like so:

- name: Install OpenVPN
        run: |
          sudo apt update
          sudo apt install -y openvpn openvpn-systemd-resolved

Which is installing 2.5.9 for me:

Setting up openvpn (2.5.9-0ubuntu0.22.04.2)

.

Any plan to support openvpn3? Or any tips on how to easily extend this action to use openvpn3? Thanks!