Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint-bicep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cli/azd/pkg/tools/bicep/bicep.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading