To fix this problems your ngrok-agent version “2.3.41” is too old. the minimum supported agent version for your account is “3.2.0”. please update to a newer version with ngrok update
, by downloading from https://ngrok.com/download, or by updating your sdk version. paid accounts are currently excluded from minimum agent version requirements. to begin handling traffic immediately without updating your agent, upgrade to a paid plan
Use this code to fix this error:
- name: CI
- on: [push, workflow_dispatch]
- jobs:
- build:
- runs-on: windows-latest
- steps:
- – name: Download
- run: Invoke-WebRequest https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-windows-amd64.zip -OutFile ngrok.zip
- – name: Extract
- run: Expand-Archive ngrok.zip
- – name: Auth
- run: .\ngrok\ngrok.exe authtoken $Env:NGROK_AUTH_TOKEN
- env:
- NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }}
- – name: Enable TS
- run: Set-ItemProperty -Path ‘HKLM:\System\CurrentControlSet\Control\Terminal Server’-name “fDenyTSConnections” -Value 0
- – run: Enable-NetFirewallRule -DisplayGroup “Remote Desktop”
- – run: Set-ItemProperty -Path ‘HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp’ -name “UserAuthentication” -Value 1
- – run: Set-LocalUser -Name “runneradmin” -Password (ConvertTo-SecureString -AsPlainText “P@ssw0rd!” -Force)
- – name: Create Tunnel run: .\ngrok\ngrok.exe tcp 3389
Happy to Works