diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f028c13a..0340fc90 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -101,6 +101,6 @@ jobs: this_openssl=${openssl_line[1]} $python tools/a_atleast_b.py $this_openssl $MIN_OPENSSL_VERSION # Check TLS version in use - $gam version extended | grep TLSv1\.[23]; fi # Builds should default TLS 1.2 or 1.3 to Google - GAM_TLS_MIN_VERSION=TLSv1_2 $gam version extended location tls-v1-0.badssl.com:1010; [[ $? == 3 ]]; # expect fail since server doesn't support our TLS version + $gam version extended | grep TLSv1\.[23] # Builds should default TLS 1.2 or 1.3 to Google + GAM_TLS_MIN_VERSION=TLSv1_2 $gam version extended location tls-v1-0.badssl.com:1010; [[ $? == 3 ]] # expect fail since server doesn't support our TLS version