Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTherapy committed Oct 10, 2024
1 parent 603c342 commit ee4f03f
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 11 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
contents: write

steps:
- uses: actions/checkout@v4
Expand All @@ -85,3 +85,9 @@ jobs:
dotnet nuget push src/Xdg.Directories/bin/Release/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_KEY }}
env:
NUGET_API_KEY: ${{ secrets.GITHUB_TOKEN }}
- name: Make a GitHub release
uses: softprops/action-gh-release@v2
with:
files: src/Xdg.Directories/bin/Release/*.nupkg
token: ${{ secrets.GITHUB_TOKEN }}
generate_release_notes: true
1 change: 0 additions & 1 deletion .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_site
keep_files: true
force_orphan: true
2 changes: 1 addition & 1 deletion src/Xdg.Benchmarks/Xdg.Benchmarks.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
</ItemGroup>

<ItemGroup>
Expand Down
5 changes: 5 additions & 0 deletions src/Xdg.Directories.FFI/Xdg.Directories.FFI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,9 @@
<InternalsVisibleTo Include="Xdg.Testing" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="8.0.10" />
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="8.0.10" />
</ItemGroup>

</Project>
9 changes: 4 additions & 5 deletions src/Xdg.Directories/Xdg.Directories.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@
<TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<IsPackable>true</IsPackable>
<IsTrimmable
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable>
<IsAotCompatible
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible>
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
Expand Down Expand Up @@ -59,10 +57,11 @@
</ItemGroup>

<ItemGroup Label="NuGet Packages">
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="8.0.10" />
<PackageReference Include="Microsoft.SourceLink.Gitea" Version="8.0.0" PrivateAssets="all" />
<SourceLinkGiteaHost Include="git.froth.zone" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="MinVer" Version="5.0.0">
<PackageReference Include="MinVer" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
6 changes: 3 additions & 3 deletions src/Xdg.Testing/Xdg.Testing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.1" />
<PackageReference Include="coverlet.collector" Version="6.0.2" />
</ItemGroup>

Expand Down

1 comment on commit ee4f03f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Benchmark.Net Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: ee4f03f Previous: 221ffd3 Ratio
Program+Benchmarks.DataHome 626.7732546879695 ns (± 1.4552407530134812) 178.93958886464438 ns (± 0.4360373567304985) 3.50
Program+Benchmarks.DataDirs 941.7561871664865 ns (± 7.106151596608779) 280.2542209625244 ns (± 0.8448185578412167) 3.36
Program+Benchmarks.DesktopDir 2742.997563680013 ns (± 8.172207592132995) 745.8337306976318 ns (± 1.3973230765515197) 3.68
Program+Benchmarks.Home 332.1955748966762 ns (± 0.5249396805792973) 86.66456937789917 ns (± 0.2234866358133085) 3.83

This comment was automatically generated by workflow using github-action-benchmark.

CC: @SamTherapy

Please sign in to comment.