Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/cd-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:

- name: Download latest artifact (from develop)
if: steps.source.outputs.run-id == ''
uses: dawidd6/action-download-artifact@v12
uses: dawidd6/action-download-artifact@v15
with:
workflow: ci-build.yml
branch: develop
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:

- name: Download latest artifact (manual trigger)
if: steps.source.outputs.run-id == ''
uses: dawidd6/action-download-artifact@v12
uses: dawidd6/action-download-artifact@v15
with:
workflow: ci-build.yml
branch: develop
Expand Down
4 changes: 2 additions & 2 deletions src/Console/PPDS.Dataverse.Demo/PPDS.Dataverse.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.3" />
<PackageReference Include="System.CommandLine" Version="2.0.1" />
<PackageReference Include="CsvHelper" Version="33.*" />
<PackageReference Include="PPDS.Dataverse" Version="1.0.0-beta.4" />
Expand Down
2 changes: 1 addition & 1 deletion src/Functions/PPDSDemo.Functions/PPDSDemo.Functions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.23.0" />
<PackageReference Include="Azure.Identity" Version="1.17.1" />
<!-- Microsoft.Extensions.Http 8.x is latest for net8.0; 10.x requires net10 -->
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.3" />
Comment on lines 24 to +25
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

The comment on line 24 states that Microsoft.Extensions.Http version 10.x requires .NET 10. While this package update to 10.0.3 is likely to work for a net8.0 project because the package also targets .NETStandard 2.0, the comment is now incorrect and misleading. Please remove the comment to avoid future confusion.

    <PackageReference Include="Microsoft.Extensions.Http" Version="10.0.3" />

</ItemGroup>

<ItemGroup>
Expand Down
Loading