diff --git a/.github/workflows/integration-cloud.yaml b/.github/workflows/integration-cloud.yaml index 6260603bb..83806be8b 100644 --- a/.github/workflows/integration-cloud.yaml +++ b/.github/workflows/integration-cloud.yaml @@ -94,7 +94,9 @@ jobs: - name: Authenticate to Azure if: ${{ inputs.target == 'azure' }} - uses: azure/login@v1 + # There was a breaking change in azure/login, so we need to force the version + # https://github.com/Azure/login/issues/403 + uses: azure/login@v1.6.1 with: client-id: ${{ secrets.AZURE_CI_CLIENT }} tenant-id: ${{ secrets.AZURE_CI_TENANT }} @@ -202,7 +204,9 @@ jobs: - name: Authenticate to Azure if: ${{ inputs.target == 'azure' }} - uses: azure/login@v1 + # There was a breaking change in azure/login, so we need to force the version + # https://github.com/Azure/login/issues/403 + uses: azure/login@v1.6.1 with: client-id: ${{ secrets.AZURE_CI_CLIENT }} tenant-id: ${{ secrets.AZURE_CI_TENANT }}