Skip to content

Commit

Permalink
#90: Many Neon.GitHub unit tests are failing with OverflowException
Browse files Browse the repository at this point in the history
  • Loading branch information
jefflill committed Apr 11, 2024
1 parent a6dc873 commit 138570a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Lib/Neon.GitHub/GitHubRepo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ public partial class GitHubRepo : IDisposable
var remoteRepoUri = $"https://{remoteRepoPath}";
var options = new CloneOptions()
{
BranchName = branchName,
CredentialsProvider = repo.credentialsProvider
BranchName = branchName,
FetchOptions = { CredentialsProvider = repo.credentialsProvider }
};

if (!remoteRepoUri.EndsWith(".git"))
Expand Down
4 changes: 2 additions & 2 deletions Lib/Neon.GitHub/Neon.GitHub.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="LibGit2Sharp" Version="0.27.2" />
<PackageReference Include="Neon.Octokit" Version="6.0.2" />
<PackageReference Include="LibGit2Sharp" Version="0.30.0" />
<PackageReference Include="Octokit" Version="11.0.0" />
</ItemGroup>

</Project>

0 comments on commit 138570a

Please sign in to comment.