You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log('##vso[task.logissue type=warning]Found the outdated dependencies in changed tasks. Please see the warnings in the "Check dependencies for updates" task');
45
+
}
46
+
47
+
outdatedDependencies.forEach(x=>{
48
+
if(process.env["TF_BUILD"]=="True"){
49
+
console.log(`##vso[task.logissue type=warning]The task "${x.task}" has dependency "${x.dependency}" that can be updated from ${x.currentVersion} to ${x.latestVersion}`);
50
+
}else{
51
+
console.warn(styleText('yellow',`Warning: The task "${x.task}" has dependency "${x.dependency}" that can be updated from ${styleText('red',x.currentVersion)} to ${styleText('greenBright',x.latestVersion)}`));
0 commit comments