Skip to content

Commit

Permalink
chore(deps): Bump Azure/cli from 1.0.7 to 1.0.8 (#389)
Browse files Browse the repository at this point in the history
Bumps [Azure/cli](https://github.com/azure/cli) from 1.0.7 to 1.0.8.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Azure/cli/commit/3833837fca02f5cb68bff19aee903a0da2e0acb5"><code>3833837</code></a>
Fix <a href="https://redirect.github.com/azure/cli/issues/103">#103</a>:
Dealing with un-escaped environment variables by using <code>args</code>
(<a
href="https://redirect.github.com/azure/cli/issues/112">#112</a>)</li>
<li>See full diff in <a
href="https://github.com/azure/cli/compare/v1.0.7...v1.0.8">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Azure/cli&package-manager=github_actions&previous-version=1.0.7&new-version=1.0.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Aug 9, 2023
1 parent ff81582 commit 0b07a64
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Defaults ✨
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# Basic
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
docker push ${{ env.ACR }}/${{ env.NAME }}:${{ env.FROM }}
- name: Revisions 🔀
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
az containerapp update \
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- name: Import ⬇️
if: ${{ '' != env.API_ID }}
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# API specification import
Expand Down
48 changes: 24 additions & 24 deletions .github/workflows/infrastructure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Azure defaults ✨
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# Basic
Expand All @@ -126,15 +126,15 @@ jobs:
az extension add --name containerapp --upgrade
- name: Resource group 🏗️
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
az group create \
--name rg-${{ env.PRODUCT }}-${{ env.TARGET }}-${{ vars.VERSION }} \
--tags ${{ env.TAGS }}
- name: Log analytics workspace 📝
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
az monitor log-analytics workspace create \
Expand All @@ -148,7 +148,7 @@ jobs:
--tags ${{ env.TAGS }}
- name: Container registry 📦️
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
az acr create \
Expand All @@ -159,7 +159,7 @@ jobs:
--tags ${{ env.TAGS }}
- name: Virtual network 🧵
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
az network vnet create \
Expand All @@ -177,7 +177,7 @@ jobs:

- name: AMI Pre-production 🔀
if: contains('["dev", "staging"]', env.TARGET)
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# Azure Managed Instance (AMI) SQL non-production DB VNET peering
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
- name: AMI Production 🔀
if: ${{ 'production' == env.TARGET }}
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# Azure Managed Instance (AMI) SQL DB production VNET peering
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
creds: ${{ secrets.AZURE_CREDENTIALS_VPN }}

- name: VNET Peer - VPN 🔀
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# VPN VNET peering
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Route table 🌐
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
az network route-table create \
Expand All @@ -289,7 +289,7 @@ jobs:
--next-hop-type VirtualAppliance
- name: Container app environment 🗃️
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
az containerapp env create \
Expand All @@ -300,7 +300,7 @@ jobs:
--tags ${{ env.TAGS }}
- name: Container app - MDM 📄
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
az containerapp create \
Expand All @@ -319,7 +319,7 @@ jobs:
--tags ${{ env.TAGS }}
- name: API management ⚡️
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
az apim create \
Expand Down Expand Up @@ -352,15 +352,15 @@ jobs:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Azure defaults ✨
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# Basic
az configure --defaults location=${{ vars.REGION }}
az configure --defaults group=rg-${{ env.PRODUCT }}-${{ env.TARGET }}-${{ vars.VERSION }}
- name: Subnet routing table 🌐
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# Associate VPN route table to default subnet
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Azure defaults ✨
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# Basic
Expand All @@ -404,7 +404,7 @@ jobs:
echo API_ECHO=$(az apim api list --service-name apim-${{ env.ENVIRONMENT }}-${{ env.TARGET }}-${{ vars.VERSION }} --filter-display-name 'Echo API' --top 1 --query [0].name -o tsv) >> $GITHUB_ENV
- name: IP restriction 🔒️
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# Add APIM public IP
Expand All @@ -418,7 +418,7 @@ jobs:
--description 'Allow APIM public IP address'
- name: Delete - Starter product
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
if: ${{ '' != env.PRODUCT_STARTER }}
with:
inlineScript: |
Expand All @@ -429,7 +429,7 @@ jobs:
--yes
- name: Delete - Unlimited product
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
if: ${{ '' != env.PRODUCT_UNLIMITED }}
with:
inlineScript: |
Expand All @@ -440,7 +440,7 @@ jobs:
--yes
- name: Delete - Echo API
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
if: ${{ '' != env.API_ECHO }}
with:
inlineScript: |
Expand Down Expand Up @@ -474,7 +474,7 @@ jobs:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Azure defaults ✨
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
with:
inlineScript: |
# Basic
Expand All @@ -487,7 +487,7 @@ jobs:
echo API_MDM=$(az apim api list --service-name apim-${{ env.ENVIRONMENT }}-${{ env.TARGET }}-${{ vars.VERSION }} --filter-display-name ${{ env.NAME_UPPERCASE }} --top 1 --query [0].name -o tsv) >> $GITHUB_ENV
- name: MDM - Product ➕
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
if: ${{ '' == env.PRODUCT_MDM }}
with:
inlineScript: |
Expand All @@ -500,7 +500,7 @@ jobs:
--subscription-required true
- name: MDM - API import ⬇️
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
if: ${{ '' == env.API_MDM }}
with:
inlineScript: |
Expand All @@ -517,7 +517,7 @@ jobs:
--specification-url https://$(az containerapp show --name ca-${{ env.PRODUCT }}-mdm-${{ env.TARGET }}-${{ vars.VERSION }} --query properties.latestRevisionFqdn -o tsv)/openapi/json
- name: MDM - Product + API 🧱
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
if: ${{ '' != env.API_MDM }}
with:
inlineScript: |
Expand All @@ -527,7 +527,7 @@ jobs:
--product-id $(az apim product list --service-name apim-${{ env.ENVIRONMENT }}-${{ env.TARGET }}-${{ vars.VERSION }} --query '[?contains(displayName, `apim-${{ env.PRODUCT }}-mdm`)].name' -o tsv)
- name: MDM - Policy 🚧
uses: Azure/cli@v1.0.7
uses: Azure/cli@v1.0.8
if: ${{ '' != env.API_MDM }}
with:
inlineScript: |
Expand Down

0 comments on commit 0b07a64

Please sign in to comment.