From 87db69fb1b1a0e0ece1d53556d3ab545733abc83 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Mar 2026 04:11:31 +0000 Subject: [PATCH 1/3] Initial plan From 53ba5625721c06b05a5f2d7442996bb1d0407e6f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Mar 2026 04:16:32 +0000 Subject: [PATCH 2/3] Update bicep version from 0.39.26 to 0.41.2 Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com> --- cli/azd/pkg/tools/bicep/bicep.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/azd/pkg/tools/bicep/bicep.go b/cli/azd/pkg/tools/bicep/bicep.go index 8b148c8507a..083f0825a63 100644 --- a/cli/azd/pkg/tools/bicep/bicep.go +++ b/cli/azd/pkg/tools/bicep/bicep.go @@ -26,7 +26,7 @@ import ( // Version is the minimum version of bicep that we require (and the one we fetch when we fetch bicep on behalf of a // user). -var Version semver.Version = semver.MustParse("0.39.26") +var Version semver.Version = semver.MustParse("0.41.2") // Cli is a wrapper around the bicep CLI. // The CLI automatically ensures bicep is installed before executing commands. From 275f5e40e3fdf7a0d8b16ba2d3511a31db2c592d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Mar 2026 17:57:26 +0000 Subject: [PATCH 3/3] Update bicep version in lint-bicep.yml to 0.41.2 Co-authored-by: JeffreyCA <9157833+JeffreyCA@users.noreply.github.com> --- .github/workflows/lint-bicep.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-bicep.yml b/.github/workflows/lint-bicep.yml index 58f77ae0071..b0990699f19 100644 --- a/.github/workflows/lint-bicep.yml +++ b/.github/workflows/lint-bicep.yml @@ -17,7 +17,7 @@ jobs: - name: Upgrade bicep run: | which bicep - sudo curl -o $(which bicep) -L https://github.com/Azure/bicep/releases/download/v0.39.26/bicep-linux-x64 + sudo curl -o $(which bicep) -L https://github.com/Azure/bicep/releases/download/v0.41.2/bicep-linux-x64 sudo chmod +x $(which bicep) - name: Lint .bicep files run: $ErrorActionPreference='Continue'; eng/scripts/Test-BicepLint.ps1 -Verbose