Skip to content

Commit abe0828

Browse files
committed
Apply recommended patches
Updating to newer version of LibGit2Sharp is currently blocked. See libgit2/libgit2sharp#2021, libgit2/libgit2sharp.nativebinaries#149, libgit2/libgit2#6547
1 parent 1b75213 commit abe0828

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/publish-to-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v3
3232
- uses: actions/setup-dotnet@v3
3333
with:
34-
dotnet-version: '7.0.202'
34+
dotnet-version: '7.0.203'
3535
include-prerelease: true
3636

3737
- name: Try use dotnet

.github/workflows/test-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v3
2626
- uses: actions/setup-dotnet@v3
2727
with:
28-
dotnet-version: '7.0.202'
28+
dotnet-version: '7.0.203'
2929
include-prerelease: true
3030

3131
- name: Try use dotnet

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ steps:
1111
- task: UseDotNet@2
1212
inputs:
1313
packageType: 'sdk' # Options: runtime, sdk
14-
version: '7.0.202'
14+
version: '7.0.203'
1515
includePreviewVersions: true
1616

1717
- script: dotnet --version

implement/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build dotnet build image
2-
FROM mcr.microsoft.com/dotnet/sdk:7.0.202 AS build-env
2+
FROM mcr.microsoft.com/dotnet/sdk:7.0.203 AS build-env
33
WORKDIR /app
44

55
# Copy everything and build
@@ -8,7 +8,7 @@ WORKDIR /app/elm-time
88
RUN dotnet publish -c Debug -o out
99

1010
# Build runtime image
11-
FROM mcr.microsoft.com/dotnet/aspnet:7.0.4 AS binaries
11+
FROM mcr.microsoft.com/dotnet/aspnet:7.0.5 AS binaries
1212

1313
COPY --from=build-env /app/elm-time/out /elm-time/dotnet/
1414

implement/elm-time/elm-time.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121

2222
<ItemGroup>
2323
<PackageReference Include="FluffySpoon.AspNet.LetsEncrypt" Version="1.116.0" />
24-
<PackageReference Include="JavaScriptEngineSwitcher.V8" Version="3.20.10" />
25-
<PackageReference Include="Jint" Version="3.0.0-beta-2048" />
24+
<PackageReference Include="JavaScriptEngineSwitcher.V8" Version="3.21.1" />
25+
<PackageReference Include="Jint" Version="3.0.0-beta-2049" />
2626
<PackageReference Include="LibGit2Sharp" Version="0.27.0-preview-0182" />
2727
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.0.2" />
28-
<PackageReference Include="Microsoft.ClearScript.V8.Native.linux-x64" Version="7.3.7" />
29-
<PackageReference Include="Microsoft.ClearScript.V8.Native.win-x64" Version="7.3.7" />
28+
<PackageReference Include="Microsoft.ClearScript.V8.Native.linux-x64" Version="7.4.1" />
29+
<PackageReference Include="Microsoft.ClearScript.V8.Native.win-x64" Version="7.4.1" />
3030
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.5.0" />
31-
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="7.0.4" />
31+
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="7.0.5" />
3232
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
3333
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
3434
<PackageReference Include="ReadLine" Version="2.0.1" />
35-
<PackageReference Include="SharpCompress" Version="0.32.2" />
35+
<PackageReference Include="SharpCompress" Version="0.33.0" />
3636
<PackageReference Include="TupleAsJsonArray" Version="1.0.2" />
3737
</ItemGroup>
3838

0 commit comments

Comments
 (0)