Skip to content

Commit e345035

Browse files
authored
vulnerable fixes (#1443)
1 parent f23ce2d commit e345035

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.azure-pipelines/templates/install-azure-cli-edge.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ steps:
1111
- script: 'pip uninstall azure-cli -y'
1212
displayName: 'Remove Azure CLI'
1313

14-
- script: 'pip install --pre azure-cli --extra-index-url https://azurecliprod.blob.core.windows.net/edge --upgrade-strategy eager'
14+
# - script: 'pip install --pre azure-cli --extra-index-url https://azurecliprod.blob.core.windows.net/edge --upgrade-strategy eager'
15+
# displayName: 'Install Azure CLI Edge'
16+
17+
- script: 'pip install azure-cli'
1518
displayName: 'Install Azure CLI Edge'
1619

1720
- script: 'python --version'

.github/actions/install-azure-cli-edge/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ runs:
1212
shell: bash
1313
- run: pip uninstall azure-cli -y
1414
shell: bash
15-
- run: pip install --pre azure-cli --extra-index-url https://azurecliprod.blob.core.windows.net/edge --upgrade-strategy eager
15+
# - run: pip install --pre azure-cli --extra-index-url https://azurecliprod.blob.core.windows.net/edge --upgrade-strategy eager
16+
# shell: bash
17+
- run: pip install azure-cli
1618
shell: bash
1719
- run: python --version
1820
shell: bash

0 commit comments

Comments
 (0)