Skip to content

Commit bbc2908

Browse files
authored
Bump PuppeteerSharp from 9.0.1 to 9.1.0
2 parents bcc514d + 35a3693 commit bbc2908

File tree

8 files changed

+23
-13
lines changed

8 files changed

+23
-13
lines changed

.github/workflows/cla.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: "CLA Assistant"
1313
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
1414
# Beta Release
15-
uses: cla-assistant/github-action@v2.2.1
15+
uses: cla-assistant/github-action@v2.3.0
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
# the below token should have repo scope and must be manually added by you in the repository's secret

.github/workflows/dotnet.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ jobs:
3030
run: dotnet restore
3131
- name: Build
3232
run: dotnet build --configuration Release --no-restore
33+
- name: Publish FolderProfilePortable
34+
run: dotnet publish ./Codeuctivity.HtmlRendererCli --configuration Release -f net6.0 -p:PublishProfile=FolderProfilePortable
35+
- name: Publish FolderProfileWindows
36+
run: dotnet publish ./Codeuctivity.HtmlRendererCli --configuration Release -f net6.0 -p:PublishProfile=FolderProfileWindows
3337
- name: Test
3438
run: dotnet test --no-build --verbosity normal --configuration Release
3539
- name: Publish Unit Test Results
@@ -57,8 +61,10 @@ jobs:
5761
run: dotnet restore
5862
- name: Build
5963
run: dotnet build --configuration Release --no-restore
60-
- name: Publish FolderProfileWindows
64+
- name: Publish FolderProfilePortable
6165
run: dotnet publish ./Codeuctivity.HtmlRendererCli --configuration Release -f net6.0 -p:PublishProfile=FolderProfilePortable
66+
- name: Publish FolderProfileWindows
67+
run: dotnet publish ./Codeuctivity.HtmlRendererCli --configuration Release -f net6.0 -p:PublishProfile=FolderProfileWindows
6268
- name: Zip FolderProfilePortable
6369
uses: thedoctor0/zip-release@main
6470
with:
@@ -81,6 +87,7 @@ jobs:
8187
./Codeuctivity.HtmlRenderer/bin/Release/*.nupkg
8288
./Codeuctivity.HtmlRenderer/bin/Release/*.snupkg
8389
./Codeuctivity.HtmlRendererCli/bin/Release/net6.0/publish/FolderProfilePortable/Codeuctivity.HtmlRendererCli.Portable.zip
90+
./Codeuctivity.HtmlRendererCli/bin/Release/net6.0/publish/FolderProfileWindows/Codeuctivity.HtmlRendererCli.exe
8491
8592
deployTest:
8693
if: github.ref == 'refs/heads/main'
@@ -102,6 +109,8 @@ jobs:
102109
run: dotnet build --configuration Release --no-restore
103110
- name: Publish FolderProfilePortable
104111
run: dotnet publish ./Codeuctivity.HtmlRendererCli --configuration Release -f net6.0 -p:PublishProfile=FolderProfilePortable
112+
- name: Publish FolderProfileWindows
113+
run: dotnet publish ./Codeuctivity.HtmlRendererCli --configuration Release -f net6.0 -p:PublishProfile=FolderProfileWindows
105114
- name: Zip FolderProfilePortable
106115
uses: thedoctor0/zip-release@main
107116
with:
@@ -125,3 +134,4 @@ jobs:
125134
./Codeuctivity.HtmlRenderer/bin/Release/*.nupkg
126135
./Codeuctivity.HtmlRenderer/bin/Release/*.snupkg
127136
./Codeuctivity.HtmlRendererCli/bin/Release/net6.0/publish/FolderProfilePortable/Codeuctivity.HtmlRendererCli.Portable.zip
137+
./Codeuctivity.HtmlRendererCli/bin/Release/net6.0/publish/FolderProfileWindows/Codeuctivity.HtmlRendererCli.exe

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
pull-requests: write
1919

2020
steps:
21-
- uses: actions/stale@v7
21+
- uses: actions/stale@v8
2222
with:
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}
2424
stale-issue-message: 'Stale issue message'

Codeuctivity.HtmlRenderer/Codeuctivity.HtmlRenderer.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net7.0;net6.0</TargetFrameworks>
@@ -39,8 +39,8 @@
3939

4040
<ItemGroup>
4141
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
42-
<PackageReference Include="PuppeteerSharp" Version="9.0.1" />
43-
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.51.0.59060">
42+
<PackageReference Include="PuppeteerSharp" Version="9.1.0" />
43+
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.55.0.65544">
4444
<PrivateAssets>all</PrivateAssets>
4545
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4646
</PackageReference>

Codeuctivity.HtmlRenderer/Renderer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public Renderer(LaunchOptions? launchOptions = null)
5050
/// <summary>
5151
/// Browser fetcher - used to get chromium bins
5252
/// </summary>
53-
public BrowserFetcher BrowserFetcher { get; private set; }
53+
public BrowserFetcher? BrowserFetcher { get; private set; }
5454

5555
private LaunchOptions LaunchOptions { get; }
5656

Codeuctivity.HtmlRendererCliTests/Codeuctivity.HtmlRendererCliTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
11-
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.51.0.59060">
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
11+
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.55.0.65544">
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1313
<PrivateAssets>all</PrivateAssets>
1414
</PackageReference>

Codeuctivity.HtmlRendererTests/Codeuctivity.HtmlRendererTests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Codeuctivity.ImageSharpCompare" Version="2.0.76" />
19+
<PackageReference Include="Codeuctivity.ImageSharpCompare" Version="2.0.155" />
2020
<PackageReference Include="Codeuctivity.PdfjsSharp" Version="1.2.95" />
21-
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.51.0.59060">
21+
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.55.0.65544">
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2323
<PrivateAssets>all</PrivateAssets>
2424
</PackageReference>
25-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
25+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
2626
<PackageReference Include="xunit" Version="2.4.2" />
2727
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
2828
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

Codeuctivity.HtmlRendererTests/RendererTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public async Task ShouldConvertHtmlToPdfWithOptions(string testFileName, bool pr
8585
}
8686
catch (InvocationException ex)
8787
{
88-
// Working around issue in Jering.Javascript.NodeJS, silencing false positiv failing
88+
// Working around issue in Jering.Javascript.NodeJS, silencing false positive failing
8989
Assert.True(RuntimeInformation.IsOSPlatform(OSPlatform.Windows), ex.Message);
9090
}
9191
}

0 commit comments

Comments
 (0)