Open
Description
Description
How do I update the Bicep version used by New-AzResourceGroupDeployment?
There is currently a bug in 34.1 that is affecting my companies work and no matter what we do to update the version using az bicep upgrade
the PowerShell command continues to use the bugged version as shown below in the image.
This Bicep is being ran on the GitHub runner ubuntu-latest
.

Script or Debug output
az bicep upgrade
$AzResourceGroupDeploymentParameters = @{
Force = $true
Mode = "Incremental"
Name = $Name
ResourceGroupName = $ResourceGroupName
TemplateFile = "./bicep/main.bicep"
Verbose = $true
}
New-AzResourceGroupDeployment @AzResourceGroupDeploymentParameters