Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil-mrzyglod committed Aug 30, 2024
2 parents 9508897 + 64607cb commit fd141db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Azure Login
uses: Azure/login@v1.4.6
uses: Azure/login@v2.1.0
with:
creds: ${{ secrets.SP_CREDS }}
- name: HashiCorp - Setup Terraform
Expand Down
2 changes: 1 addition & 1 deletion ace/Compilation/BicepCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ILogger<Program> logger
{
// First compilation may not work if Azure CLI is not installed directly,
// try to use Bicep CLI instead
this.logger.AddEstimatorMessage("Compilation failed, attempting to compile Bicep file using Azure CLI.");
this.logger.AddEstimatorMessage("Compilation failed, attempting to compile Bicep file using Bicep CLI.");
CompileBicepWith("bicep", $"build {templateFile} --stdout", token, logger, out template);
}

Expand Down
2 changes: 1 addition & 1 deletion ace/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ private static async Task<ApplicationResult> Estimate(FileInfo templateFile,

if (whatIfData != null && whatIfData.status == "Failed")
{
var error = "An error happened when performing WhatIf operation.";
var error = $"An error happened when performing WhatIf operation with status {whatIfData.status}.";
logger.LogError("{error}", error);

if (whatIfData.error != null)
Expand Down

0 comments on commit fd141db

Please sign in to comment.