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
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
dotnet publish SkiaSharpCompare.Cli/SkiaSharpCompare.Cli.csproj -c Release -r win-arm64 --self-contained true -p:PublishSingleFile=true -o ./artifacts/cli/win-arm64

- name: Upload CLI artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

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

The PR title indicates only a MetadataExtractor bump, but this workflow change also updates GitHub Actions artifact action versions. Please either update the PR title/description to reflect CI dependency changes or split this into a separate PR to keep change scope clear.

Copilot uses AI. Check for mistakes.
with:
name: cli-artifacts-${{ matrix.os }}
path: ./artifacts/cli
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Download CLI artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: ./artifacts_download
- name: NugetPush
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Download CLI artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: ./artifacts_download
- name: NugetPush
Expand Down
2 changes: 1 addition & 1 deletion SkiaSharpCompare/SkiaSharpCompare.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MetadataExtractor" Version="2.9.0" />
<PackageReference Include="MetadataExtractor" Version="2.9.3" />
<PackageReference Include="SkiaSharp" Version="3.119.2" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="3.119.2" />
<PackageReference Include="SonarAnalyzer.CSharp" Version="10.16.0.128591">
Expand Down
Loading