Skip to content

Commit

Permalink
[Update] dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
samatstariongroup committed Dec 11, 2023
1 parent 04acb59 commit 0c6ebcd
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/CodeQuality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,17 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
overwrite-settings: false

- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'

- name: add organization github nuget feed
run: dotnet nuget add source https://nuget.pkg.github.com/RHEAGROUP/index.json -n github -u ${{ secrets.REGISTRY_USER }} -p ${{ secrets.REGISTRY_TOKEN }} --store-password-in-clear-text
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
10 changes: 5 additions & 5 deletions DEH-CSV.Tests/DEH-CSV.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup Label="Package">
<Description>Nunit test suite for the RHEAGROUP.DEHCSV library</Description>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>RHEAGROUP.DEHCSV.Tests</RootNamespace>
<ImplicitUsings>false</ImplicitUsings>
<Nullable>disable</Nullable>
Expand All @@ -23,9 +23,9 @@
</PropertyGroup>

<ItemGroup Label="Test">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit.Console" Version="3.16.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0">
<PrivateAssets>all</PrivateAssets>
Expand All @@ -43,7 +43,7 @@
</ItemGroup>

<ItemGroup Label="Dependencies">
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions DEH-CSV/DEH-CSV.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CDP4JsonFileDal-CE" Version="24.0.0" />
<PackageReference Include="CDP4ServicesDal-CE" Version="24.0.0" />
<PackageReference Include="CDP4JsonFileDal-CE" Version="24.4.0" />
<PackageReference Include="CDP4ServicesDal-CE" Version="24.4.0" />
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.1" />
<PackageReference Include="System.Text.Json" Version="7.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 0c6ebcd

Please sign in to comment.