File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 47
47
- name : " Validate config update - single file"
48
48
shell : bash
49
49
run : |
50
- wget -S -q --spider http://${{ secrets.NGINX_DEPLOYMENT_IP }} 2>&1 | grep "Github-Run-Id: $GITHUB_RUN_ID"
50
+ curl -s -o /dev/null -D - http://${{ secrets.NGINX_DEPLOYMENT_IP }} | grep "Github-Run-Id: $GITHUB_RUN_ID"
51
51
- name : " Update config - multi file"
52
52
shell : bash
53
53
run : |
71
71
- name : " Validate config update"
72
72
shell : bash
73
73
run : |
74
- wget -S -q --spider http://${{ secrets.NGINX_DEPLOYMENT_IP }} 2>&1 | grep "Github-Run-Id: $GITHUB_RUN_ID"
74
+ curl -s -o /dev/null -D - http://${{ secrets.NGINX_DEPLOYMENT_IP }} | grep "Github-Run-Id: $GITHUB_RUN_ID"
75
75
- name : " Validate certificate update"
76
76
uses : azure/cli@v2
77
77
with :
81
81
az keyvault certificate show --vault-name $NGINX_VAULT_NAME -n $NGINX_CERT_NAME | jq -r .cer | cat >> /tmp/$GITHUB_RUN_ID.tmp
82
82
echo "-----END CERTIFICATE-----" >> /tmp/$GITHUB_RUN_ID.tmp
83
83
cat /tmp/$GITHUB_RUN_ID.tmp
84
- wget https://${{ secrets.NGINX_DEPLOYMENT_IP }} --ca-certificate= /tmp/$GITHUB_RUN_ID.tmp 2>&1
84
+ curl -s -o /dev/null -D - https://${{ secrets.NGINX_DEPLOYMENT_IP }} --ca-cert /tmp/$GITHUB_RUN_ID.tmp | grep "Github-Run-Id: $GITHUB_RUN_ID"
You can’t perform that action at this time.
0 commit comments