Merge branch '4.0.x'

This commit is contained in:
Ryan Baxter
2024-02-15 11:19:31 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ releaser:
update-start-spring-io: true
update-spring-project: true
run-updated-samples: true
update-release-train-docs: false
update-release-train-docs: true
update-release-train-wiki: true
update-all-test-samples: true
all-test-sample-urls:

View File

@@ -436,7 +436,7 @@ class GitRepo {
Git git = this.gitFactory.open(projectDir);
FetchCommand command = git.fetch();
try {
return command.call();
return command.setCredentialsProvider(gitFactory.provider).call();
}
catch (GitAPIException e) {
deleteBaseDirIfExists();