From f5a00dd81bdb1ebae8983c93e0b0a37b17470a37 Mon Sep 17 00:00:00 2001 From: Kristen Womack <5034778+kristenwomack@users.noreply.github.com> Date: Tue, 29 Jul 2025 15:29:51 -0500 Subject: [PATCH 1/2] Update azure-dev.yml Removing the old azd container because it is deprecated. https://github.com/Azure/azure-dev/discussions/5490 cc: @danieljurek --- .azdo/pipelines/azure-dev.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.azdo/pipelines/azure-dev.yml b/.azdo/pipelines/azure-dev.yml index 80b9160..7890c3e 100644 --- a/.azdo/pipelines/azure-dev.yml +++ b/.azdo/pipelines/azure-dev.yml @@ -9,8 +9,13 @@ trigger: pool: vmImage: ubuntu-latest -# Use azd provided container image that has azd, infra, multi-language build tools pre-installed. -container: mcr.microsoft.com/azure-dev-cli-apps:latest +steps: + + - name: Checkout + uses: actions/checkout@v3 + + - name: Install azd + uses: Azure/setup-azd@v2 steps: - pwsh: | From fbef3cfd232445685b68ebc5eef6162aa2f834c7 Mon Sep 17 00:00:00 2001 From: Kristen Womack <5034778+kristenwomack@users.noreply.github.com> Date: Mon, 18 Aug 2025 15:37:21 +0000 Subject: [PATCH 2/2] update for ADO pipeline --- .azdo/pipelines/azure-dev.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.azdo/pipelines/azure-dev.yml b/.azdo/pipelines/azure-dev.yml index 7890c3e..153b036 100644 --- a/.azdo/pipelines/azure-dev.yml +++ b/.azdo/pipelines/azure-dev.yml @@ -11,13 +11,16 @@ pool: steps: - - name: Checkout - uses: actions/checkout@v3 + - task: setup-azd@1 + displayName: Install azd +# If you can't install above task in your organization, you can comment it and uncomment below task to install azd +# - task: Bash@3 +# displayName: Install azd +# inputs: +# targetType: 'inline' +# script: | +# curl -fsSL https://aka.ms/install-azd.sh | bash - - name: Install azd - uses: Azure/setup-azd@v2 - -steps: - pwsh: | azd config set auth.useAzCliAuth "true" displayName: Configure AZD to Use AZ CLI Authentication.