I am not expert of the subject but the error I understood that your workflow is running Azure CLI 2.30.0, which may not support the --minimum-tls-version
flag.
Try to modify the GitHub Actions workflow YAML to use a newer Azure CLI version:
- name: Install latest Azure CLI
run: |
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
Or modify your workflow YAML to explicitly use a compatible CLI version:
- name: Use Azure CLI
uses: azure/setup-cli@v1
with:
version: latest