Skip to content

Commit

Permalink
Merge e8189d8 into 1944a2a
Browse files Browse the repository at this point in the history
  • Loading branch information
samsmithnz committed Aug 31, 2023
2 parents 1944a2a + e8189d8 commit 454da3b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />
<PackageReference Include="RepoAutomation.Core" Version="1.4.15" />
<PackageReference Include="RepoAutomation.Core" Version="1.4.17" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/RepoGovernance.Core/RepoGovernance.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
<ItemGroup>
<PackageReference Include="Azure.Data.Tables" Version="12.8.1" />
<PackageReference Include="Azure.Identity" Version="1.10.0" />
<PackageReference Include="DotNetCensus.Core" Version="1.5.11" />
<PackageReference Include="GitHubActionsDotNet" Version="1.1.1" />
<PackageReference Include="DotNetCensus.Core" Version="1.6.0" />
<PackageReference Include="GitHubActionsDotNet" Version="1.1.4" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Graph" Version="5.24.0" />
<PackageReference Include="RepoAutomation.Core" Version="1.4.15" />
<PackageReference Include="RepoAutomation.Core" Version="1.4.17" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/RepoGovernance.Function/RepoGovernance.Function.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Storage.Queues" Version="12.15.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="5.1.3" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="5.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.2.0" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/RepoGovernance.Tests/SummaryItemsControllerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ public async Task GetSummaryItemsTest()
Assert.AreEqual("dependabot.yml", item1.DependabotFile?.name);
Assert.AreEqual("2", item1.DependabotRoot?.version);
Assert.IsTrue(item1.DependabotFile?.content?.Length > 0);
Assert.AreEqual(1, item1.DependabotRecommendations.Count);
Assert.AreEqual("Consider adding an open_pull_requests_limit to ensure Dependabot doesn't open too many PR's in the / project, github-actions ecosystem", item1.DependabotRecommendations[0]);
Assert.AreEqual(0, item1.DependabotRecommendations.Count);
//Assert.AreEqual("Consider adding an open_pull_requests_limit to ensure Dependabot doesn't open too many PR's in the / project, github-actions ecosystem", item1.DependabotRecommendations[0]);
Assert.IsNotNull(item1.BranchPolicies);
Assert.AreEqual(0, item1.BranchPoliciesRecommendations.Count);
Assert.AreEqual(1, item1.GitVersion.Count);
Expand Down

0 comments on commit 454da3b

Please sign in to comment.