Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin all the azure cli versions to 2.63.0 #561

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/aro-hcp-dev-env-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
- name: 'Deploy'
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
cd dev-infrastructure/

Expand Down Expand Up @@ -97,7 +97,7 @@
- name: 'Deploy'
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
cd dev-infrastructure/

Expand Down Expand Up @@ -143,7 +143,7 @@
- name: 'Deploy'
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
cd dev-infrastructure/

Expand Down Expand Up @@ -204,7 +204,7 @@
- name: 'Deploy or Update'
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
cd dev-infrastructure/

Expand Down Expand Up @@ -365,7 +365,7 @@
id: find_service_cluster
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
echo "name=$(az aks list --resource-group "${SC_RESOURCEGROUP}" --output tsv --query "[?tags.clusterType == 'svc-cluster'].name | [0]")" >> $GITHUB_OUTPUT

Expand Down Expand Up @@ -452,7 +452,7 @@
id: find_management_cluster
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
echo "name=$(az aks list --resource-group "${MC_RESOURCEGROUP}" --output tsv --query "[?tags.clusterType == 'mgmt-cluster'].name | [0]")" >> $GITHUB_OUTPUT

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cs-integration-env-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
- name: 'Deploy'
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
cd dev-infrastructure/

Expand Down Expand Up @@ -110,7 +110,7 @@
- name: 'Deploy'
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
cd dev-infrastructure/

Expand Down Expand Up @@ -171,7 +171,7 @@
- name: 'Deploy or Update'
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
cd dev-infrastructure/

Expand Down Expand Up @@ -233,7 +233,7 @@
id: find_service_cluster
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
echo "name=$(az aks list --resource-group "${SC_RESOURCEGROUP}" --output tsv --query "[?tags.clusterType == 'svc-cluster'].name | [0]")" >> $GITHUB_OUTPUT

Expand Down Expand Up @@ -310,7 +310,7 @@
id: find_management_cluster
uses: azure/cli@089eac9d8cc39f5d003e94f8b65efc51076c9cbd # v2.1.0
with:
azcliversion: latest
azcliversion: 2.63.0
inlineScript: |
echo "name=$(az aks list --resource-group "${MC_RESOURCEGROUP}" --output tsv --query "[?tags.clusterType == 'mgmt-cluster'].name | [0]")" >> $GITHUB_OUTPUT

Expand Down
Loading