mirror of
https://github.com/gradle/actions.git
synced 2025-02-03 15:26:42 -05:00
Fix deprecation warnings in dependency-graph init-script
This commit is contained in:
parent
65a3beb941
commit
79bad900c0
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ buildscript {
|
|||
if (pluginRepositoryUsername && pluginRepositoryPassword) {
|
||||
logger.lifecycle("Applying credentials for plugin repository: ${pluginRepositoryUrl}")
|
||||
credentials {
|
||||
username(pluginRepositoryUsername)
|
||||
password(pluginRepositoryPassword)
|
||||
username = pluginRepositoryUsername
|
||||
password = pluginRepositoryPassword
|
||||
}
|
||||
authentication {
|
||||
basic(BasicAuthentication)
|
||||
|
|
Loading…
Reference in a new issue