diff --git a/.github/workflows/lint-bicep.yml b/.github/workflows/lint-bicep.yml index 628529cb04f..c785a113872 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.38.3/bicep-linux-x64 + sudo curl -o $(which bicep) -L https://github.com/Azure/bicep/releases/download/v0.38.5/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 65cd3cc679a..17cd0d331a9 100644 --- a/cli/azd/pkg/tools/bicep/bicep.go +++ b/cli/azd/pkg/tools/bicep/bicep.go @@ -25,7 +25,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.38.3") +var Version semver.Version = semver.MustParse("0.38.5") // NewCli creates a new Bicep CLI. Azd manages its own copy of the bicep CLI, stored in `$AZD_CONFIG_DIR/bin`. If // bicep is not present at this location, or if it is present but is older than the minimum supported version, it is