Skip to content

Commit

Permalink
Update dependencies and fix CG alerts (dotnet#693)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros authored Jan 30, 2024
1 parent d741bac commit 0302b6b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions eng/dependencies.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<Project>
<PropertyGroup Label="Package Versions">
<JsonNetVersion>13.0.1</JsonNetVersion>
<JsonNetVersion>13.0.3</JsonNetVersion>
<OctokitVersion>5.0.4</OctokitVersion>
<MicrosoftDataSqlClientVersion>5.1.1</MicrosoftDataSqlClientVersion>
<AzureIdentityVersion>1.10.2</AzureIdentityVersion>
<MicrosoftDataSqlClientVersion>5.1.5</MicrosoftDataSqlClientVersion>
<AzureIdentityVersion>1.10.4</AzureIdentityVersion>
<JintVersion>3.0.0</JintVersion>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.0.0" />
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.9.0" />
<PackageReference Include="Jint" Version="3.0.0-beta-1914" />
<PackageReference Include="Jint" Version="$(JintVersion)" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />

<!-- Force version for Component Governance compliance -->
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.Crank.AzureDevOpsWorker/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ private static async Task MessageHandler(ProcessMessageEventArgs args)
{
try
{
var condition = Engine.Execute(jobPayload.Condition).GetCompletionValue().AsBoolean();
var condition = Engine.Evaluate(jobPayload.Condition).AsBoolean();

if (!condition)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<ItemGroup>
<PackageReference Include="Fluid.Core" Version="2.2.6" />
<PackageReference Include="Jint" Version="3.0.0-beta-1914" />
<PackageReference Include="Jint" Version="$(JintVersion)" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.0.0" />
<PackageReference Include="Microsoft.Azure.Relay" Version="2.0.15596" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="$(MicrosoftDataSqlClientVersion)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.0.0" />
<PackageReference Include="Jint" Version="3.0.0-beta-1914" />
<PackageReference Include="Jint" Version="$(JintVersion)" />
</ItemGroup>
</Project>

0 comments on commit 0302b6b

Please sign in to comment.