Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
dotnet-version: "10.0.x"

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: csharp
build-mode: manual
Expand All @@ -39,6 +39,6 @@ jobs:
run: dotnet build SpringVoyage.slnx --configuration Release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:csharp"
12 changes: 6 additions & 6 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
</PropertyGroup>
<ItemGroup>
<!-- Dapr SDK -->
<PackageVersion Include="Dapr.Client" Version="1.15.3" />
<PackageVersion Include="Dapr.AspNetCore" Version="1.15.3" />
<PackageVersion Include="Dapr.Actors" Version="1.15.3" />
<PackageVersion Include="Dapr.Actors.AspNetCore" Version="1.15.3" />
<PackageVersion Include="Dapr.Client" Version="1.17.8" />
<PackageVersion Include="Dapr.AspNetCore" Version="1.17.8" />
<PackageVersion Include="Dapr.Actors" Version="1.17.8" />
<PackageVersion Include="Dapr.Actors.AspNetCore" Version="1.17.8" />
<PackageVersion Include="Dapr.Workflow" Version="1.17.8" />

<!-- GitHub -->
<PackageVersion Include="Octokit" Version="13.0.1" />
<PackageVersion Include="Octokit" Version="14.0.0" />
<PackageVersion Include="System.IdentityModel.Tokens.Jwt" Version="8.17.0" />

<!-- CLI -->
Expand All @@ -32,7 +32,7 @@

<!-- Testing (Microsoft Testing Platform + xUnit v3) -->
<PackageVersion Include="xunit.v3.mtp-v2" Version="3.2.2" />
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="18.5.2" />
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="18.6.2" />
<PackageVersion Include="FluentAssertions" Version="8.9.0" />
<PackageVersion Include="NSubstitute" Version="5.3.0" />
</ItemGroup>
Expand Down
Loading