Skip to content

Commit 558c830

Browse files
committed
Update dependencies
1 parent ea17fde commit 558c830

File tree

6 files changed

+35
-14
lines changed

6 files changed

+35
-14
lines changed

.github/dependabot.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: nuget
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
open-pull-requests-limit: 10
8+
groups:
9+
tests:
10+
patterns: ["*"]
11+
update-types: ["minor", "patch"]
12+
- package-ecosystem: github-actions
13+
directory: "/"
14+
schedule:
15+
interval: "daily"
16+
open-pull-requests-limit: 10
17+
- package-ecosystem: dotnet-sdk
18+
directory: "/"
19+
schedule:
20+
interval: "daily"
21+
open-pull-requests-limit: 10

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212
- name: Setup .NET Core
13-
uses: actions/setup-dotnet@v3
13+
uses: actions/setup-dotnet@v4
1414
with:
15-
dotnet-version: 8.0.x
15+
dotnet-version: 9.0.x
1616
- name: Build iTextSharp.LGPLv2.Core lib
1717
run: dotnet build ./src/iTextSharp.LGPLv2.Core/iTextSharp.LGPLv2.Core.csproj --configuration Release
1818

.github/workflows/codeql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
# Initializes the CodeQL tools for scanning.
4949
- name: Initialize CodeQL
50-
uses: github/codeql-action/init@v2
50+
uses: github/codeql-action/init@v3
5151
with:
5252
languages: ${{ matrix.language }}
5353
config-file: ./.github/workflows/codeql/codeql-config.yml
@@ -62,11 +62,11 @@ jobs:
6262
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6363
# If this step fails, then you should remove it and run the build manually (see below)
6464
# - name: Autobuild
65-
# uses: github/codeql-action/autobuild@v2
65+
# uses: github/codeql-action/autobuild@v3
6666
- name: Setup .NET
67-
uses: actions/setup-dotnet@v3
67+
uses: actions/setup-dotnet@v4
6868
with:
69-
dotnet-version: 8.0.x
69+
dotnet-version: 9.0.x
7070
- name: Build
7171
run: dotnet build --configuration Release
7272

@@ -81,6 +81,6 @@ jobs:
8181
# ./location_of_script_within_repo/buildscript.sh
8282

8383
- name: Perform CodeQL Analysis
84-
uses: github/codeql-action/analyze@v2
84+
uses: github/codeql-action/analyze@v3
8585
with:
8686
category: "/language:${{matrix.language}}"

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.402",
3+
"version": "9.0.100",
44
"rollForward": "latestMajor",
55
"allowPrerelease": false
66
}

src/iTextSharp.LGPLv2.Core.FunctionalTests/iTextSharp.LGPLv2.Core.FunctionalTests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
</PackageReference>
2323
</ItemGroup>
2424
<ItemGroup>
25-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1"/>
26-
<PackageReference Include="MSTest.TestAdapter" Version="3.6.0"/>
27-
<PackageReference Include="MSTest.TestFramework" Version="3.6.0"/>
25+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
26+
<PackageReference Include="MSTest.TestAdapter" Version="3.6.3"/>
27+
<PackageReference Include="MSTest.TestFramework" Version="3.6.3"/>
2828

2929
<PackageReference Include="BitMiracle.LibTiff.NET" Version="2.4.649"/>
3030
</ItemGroup>

src/iTextSharp.LGPLv2.Core/iTextSharp.LGPLv2.Core.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>iTextSharp.LGPLv2.Core is an unofficial port of the last LGPL version of the iTextSharp (V4.1.6) to .NET Core.</Description>
4-
<VersionPrefix>3.4.22</VersionPrefix>
4+
<VersionPrefix>3.4.23</VersionPrefix>
55
<LangVersion>latest</LangVersion>
66
<Authors>Vahid Nasiri</Authors>
77
<TargetFrameworks>netstandard2.0;net462;</TargetFrameworks>
@@ -63,12 +63,12 @@
6363
<Using Remove="System.Net.Http"/> <!-- for .NET Framework 4.x -->
6464
</ItemGroup>
6565
<ItemGroup>
66-
<PackageReference Include="SkiaSharp" Version="2.88.8"/>
66+
<PackageReference Include="SkiaSharp" Version="2.88.9"/>
6767
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0"/>
6868
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
6969
</ItemGroup>
7070
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
71-
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0"/>
71+
<PackageReference Include="System.Text.Encoding.CodePages" Version="9.0.0"/>
7272
</ItemGroup>
7373
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
7474
<DefineConstants>NETSTANDARD2_0</DefineConstants>

0 commit comments

Comments
 (0)