diff --git a/.github/workflows/lint-bicep.yml b/.github/workflows/lint-bicep.yml index d25e560afc0..f6135ad6cf2 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.42.1/bicep-linux-x64 + sudo curl -o $(which bicep) -L https://github.com/Azure/bicep/releases/download/v0.43.8/bicep-linux-x64 sudo chmod +x $(which bicep) - name: Lint .bicep files run: $ErrorActionPreference='Continue'; eng/scripts/Test-BicepLint.ps1 -Verbose diff --git a/cli/azd/pkg/tools/bicep/bicep.go b/cli/azd/pkg/tools/bicep/bicep.go index ac20c92996c..5a070a59119 100644 --- a/cli/azd/pkg/tools/bicep/bicep.go +++ b/cli/azd/pkg/tools/bicep/bicep.go @@ -30,7 +30,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.42.1") +var Version semver.Version = semver.MustParse("0.43.8") // Cli is a wrapper around the bicep CLI. // The CLI automatically ensures bicep is installed before executing commands.