Skip to content

Commit

Permalink
Fix / Breaking change in CI action for Azure login (#410)
Browse files Browse the repository at this point in the history
* Fix for a breaking change in the azure/login action for CI

* Fix for a breaking change in the azure/login action for CI

* Fix for a breaking change in the azure/login action for CI
  • Loading branch information
Martin Traverse authored Jan 18, 2024
1 parent 37ea0e5 commit 4ddd05a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/integration-cloud.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
with:
client-id: ${{ secrets.AZURE_CI_CLIENT }}
tenant-id: ${{ secrets.AZURE_CI_TENANT }}
Expand Down Expand Up @@ -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/[email protected]
with:
client-id: ${{ secrets.AZURE_CI_CLIENT }}
tenant-id: ${{ secrets.AZURE_CI_TENANT }}
Expand Down

0 comments on commit 4ddd05a

Please sign in to comment.