Skip to content

Commit

Permalink
Use groups in dependabot to update items together
Browse files Browse the repository at this point in the history
  • Loading branch information
Vectron committed Oct 8, 2024
1 parent b0b16ac commit 92a8880
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 15 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,19 @@ updates:
day: friday
time: "23:00"
timezone: Europe/Amsterdam
groups:
Beckhoff:
patterns:
- "Beckhoff.TwinCAT.Ads*"
MSTest:
patterns:
- "MSTest.*"
Coverlet:
patterns:
- "coverlet.*"
IOAbstraction:
patterns:
- "System.IO.Abstractions*"
Analyzers:
patterns:
- "*Analyzer*"
4 changes: 0 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
<CommonDirectory>$(MSBuildThisFileDirectory)\src\Common</CommonDirectory>
</PropertyGroup>

<PropertyGroup>
<SystemIOAbstractionsVersion>21.0.29</SystemIOAbstractionsVersion>
</PropertyGroup>

<!--Package settings-->
<PropertyGroup>
<Authors>Vectron</Authors>
Expand Down
8 changes: 4 additions & 4 deletions src/PlcInterface.Ads/PlcInterface.Ads.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
</ItemGroup>

<PropertyGroup>
<TwinCATAdsVersion>6.1.203</TwinCATAdsVersion>
<TwinCATAdsVersion></TwinCATAdsVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Beckhoff.TwinCAT.Ads" Version="$(TwinCATAdsVersion)" />
<PackageReference Include="Beckhoff.TwinCAT.Ads.Reactive" Version="$(TwinCATAdsVersion)" />
<PackageReference Include="Beckhoff.TwinCAT.Ads" Version="6.1.203" />
<PackageReference Include="Beckhoff.TwinCAT.Ads.Reactive" Version="6.1.203" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
<PackageReference Include="System.IO.Abstractions" Version="$(SystemIOAbstractionsVersion)" />
<PackageReference Include="System.IO.Abstractions" Version="21.0.29" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 2 additions & 6 deletions test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,11 @@
<AssemblyAttribute Include="System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute" />
</ItemGroup>

<PropertyGroup>
<MSTestVersion>3.6.1</MSTestVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1" PrivateAssets="All" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="MSTest.TestAdapter" Version="$(MSTestVersion)" />
<PackageReference Include="MSTest.TestFramework" Version="$(MSTestVersion)" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.1" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="coverlet.collector" Version="6.0.2" />
<PackageReference Include="coverlet.msbuild" Version="6.0.2" />
Expand Down
2 changes: 1 addition & 1 deletion test/PlcInterface.Ads.Tests/PlcInterface.Ads.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="$(SystemIOAbstractionsVersion)" />
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="21.0.29" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 92a8880

Please sign in to comment.