Skip to content

Commit 2c5c31e

Browse files
authored
Merge pull request #154 from hoerup/libgit2v172
Update libgit2 to v1.7.2
2 parents 9deb8d8 + 1a531fb commit 2c5c31e

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fail-fast: false
4545
steps:
4646
- name: Checkout
47-
uses: actions/checkout@v3.5.0
47+
uses: actions/checkout@v4.1.2
4848
with:
4949
submodules: true
5050
- name: Build Windows
@@ -60,7 +60,7 @@ jobs:
6060
if: runner.os == 'Linux'
6161
run: ./dockerbuild.sh
6262
- name: Upload artifacts
63-
uses: actions/upload-artifact@v3.1.2
63+
uses: actions/upload-artifact@v4.3.1
6464
with:
6565
name: ${{ matrix.name }}
6666
path: nuget.package/runtimes/${{ matrix.name }}
@@ -72,26 +72,26 @@ jobs:
7272
DOTNET_NOLOGO: true
7373
steps:
7474
- name: Checkout
75-
uses: actions/checkout@v3.5.0
75+
uses: actions/checkout@v4.1.2
7676
with:
7777
fetch-depth: 0
7878
- name: Setup .NET SDK
79-
uses: actions/setup-dotnet@v3.0.3
79+
uses: actions/setup-dotnet@v4.0.0
8080
with:
81-
dotnet-version: 7.0.x
81+
dotnet-version: 8.0.x
8282
- name: Install MinVer
8383
run: dotnet tool install --global minver-cli
8484
- name: Run MinVer
8585
id: minver
8686
run: echo "version=$(minver)" >> $env:GITHUB_OUTPUT
8787
- name: Download artifacts
88-
uses: actions/download-artifact@v3.0.2
88+
uses: actions/download-artifact@v4.1.4
8989
with:
9090
path: nuget.package/runtimes/
9191
- name: Create package
9292
run: ./nuget.exe Pack nuget.package/NativeBinaries.nuspec -Version ${{ steps.minver.outputs.version }} -NoPackageAnalysis
9393
- name: Upload NuGet package
94-
uses: actions/upload-artifact@v3.1.2
94+
uses: actions/upload-artifact@v4.3.1
9595
with:
9696
name: NuGet package
9797
path: ./*.nupkg

nuget.exe

31.5 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Project>
1+
<Project>
22
<PropertyGroup>
33
<libgit2_propsfile>$(MSBuildThisFileFullPath)</libgit2_propsfile>
4-
<libgit2_hash>a2bde63741977ca0f4ef7db2f609df320be67a08</libgit2_hash>
5-
<libgit2_filename>git2-a2bde63</libgit2_filename>
4+
<libgit2_hash>a418d9d4ab87bae16b87d8f37143a4687ae0e4b2</libgit2_hash>
5+
<libgit2_filename>git2-a418d9d</libgit2_filename>
66
</PropertyGroup>
77
</Project>

nuget.package/build/net46/LibGit2Sharp.NativeBinaries.props

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<Project>
1+
<Project>
22
<PropertyGroup>
33
<libgit2_propsfile>$(MSBuildThisFileFullPath)</libgit2_propsfile>
4-
<libgit2_hash>a2bde63741977ca0f4ef7db2f609df320be67a08</libgit2_hash>
5-
<libgit2_filename>git2-a2bde63</libgit2_filename>
4+
<libgit2_hash>a418d9d4ab87bae16b87d8f37143a4687ae0e4b2</libgit2_hash>
5+
<libgit2_filename>git2-a418d9d</libgit2_filename>
66
</PropertyGroup>
77
<ItemGroup>
88
<ContentWithTargetPath Include="$(MSBuildThisFileDirectory)\..\..\runtimes\win-x86\native\*" TargetPath="lib\win32\x86\%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" />
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<configuration>
2-
<dllmap os="linux" cpu="x86-64" wordsize="64" dll="git2-a2bde63" target="lib/linux-x64/libgit2-a2bde63.so" />
3-
<dllmap os="linux" cpu="arm" wordsize="32" dll="git2-a2bde63" target="lib/linux-arm/libgit2-a2bde63.so" />
4-
<dllmap os="linux" cpu="armv8" wordsize="64" dll="git2-a2bde63" target="lib/linux-arm64/libgit2-a2bde63.so" />
5-
<dllmap os="osx" cpu="x86-64" wordsize="64" dll="git2-a2bde63" target="lib/osx-x64/libgit2-a2bde63.dylib" />
6-
<dllmap os="osx" cpu="armv8" wordsize="64" dll="git2-a2bde63" target="lib/osx-arm64/libgit2-a2bde63.dylib" />
1+
<configuration>
2+
<dllmap os="linux" cpu="x86-64" wordsize="64" dll="git2-a418d9d" target="lib/linux-x64/libgit2-a418d9d.so" />
3+
<dllmap os="linux" cpu="arm" wordsize="32" dll="git2-a418d9d" target="lib/linux-arm/libgit2-a418d9d.so" />
4+
<dllmap os="linux" cpu="armv8" wordsize="64" dll="git2-a418d9d" target="lib/linux-arm64/libgit2-a418d9d.so" />
5+
<dllmap os="osx" cpu="x86-64" wordsize="64" dll="git2-a418d9d" target="lib/osx-x64/libgit2-a418d9d.dylib" />
6+
<dllmap os="osx" cpu="armv8" wordsize="64" dll="git2-a418d9d" target="lib/osx-arm64/libgit2-a418d9d.dylib" />
77
</configuration>
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
a2bde63741977ca0f4ef7db2f609df320be67a08
1+
a418d9d4ab87bae16b87d8f37143a4687ae0e4b2

0 commit comments

Comments
 (0)