Fix remaining workspace paths

Change-Id: I49555ed102b490b993c3109f2103d40db022fa79
diff --git a/cicd/pipelines/core/images.jenkins b/cicd/pipelines/core/images.jenkins
index c65a656..63a0a17 100644
--- a/cicd/pipelines/core/images.jenkins
+++ b/cicd/pipelines/core/images.jenkins
@@ -4,7 +4,7 @@
 
 def boardName = params.boardName
 def releaseName = params.releaseName
-def workspacePath = "/home/jenkins/workspace"
+def workspacePath = "/home/jenkins/agent/workspace"
 def buildLabel = "image.${releaseName}.${boardName}-${UUID.randomUUID().toString()}"
 def sourcePath = "${workspacePath}/src"
 
diff --git a/cicd/pipelines/tasks/task_create_mirror.jenkins b/cicd/pipelines/tasks/task_create_mirror.jenkins
index a583a65..7ad9c20 100644
--- a/cicd/pipelines/tasks/task_create_mirror.jenkins
+++ b/cicd/pipelines/tasks/task_create_mirror.jenkins
@@ -1,6 +1,6 @@
 #!/usr/bin/env groovy
 
-def workspacePath = "/home/jenkins/workspace"
+def workspacePath = "/home/jenkins/agent/workspace"
 def buildLabel = "task.mirror.create-${UUID.randomUUID().toString()}"
 def sourcePath = "${workspacePath}/src"
 
diff --git a/cicd/pipelines/tasks/task_create_repo.jenkins b/cicd/pipelines/tasks/task_create_repo.jenkins
index 079c6fd..0e2d457 100644
--- a/cicd/pipelines/tasks/task_create_repo.jenkins
+++ b/cicd/pipelines/tasks/task_create_repo.jenkins
@@ -1,6 +1,6 @@
 #!/usr/bin/env groovy
 
-def workspacePath = "/home/jenkins/workspace"
+def workspacePath = "/home/jenkins/agent/workspace"
 def buildLabel = "task.repo.create-${UUID.randomUUID().toString()}"
 def sourcePath = "${workspacePath}/src"
 
diff --git a/cicd/pipelines/tasks/task_publish_unstable.jenkins b/cicd/pipelines/tasks/task_publish_unstable.jenkins
index 05c447c..446a531 100644
--- a/cicd/pipelines/tasks/task_publish_unstable.jenkins
+++ b/cicd/pipelines/tasks/task_publish_unstable.jenkins
@@ -30,7 +30,7 @@
     }
 }
 
-def workspacePath = "/home/jenkins/workspace"
+def workspacePath = "/home/jenkins/agent/workspace"
 def buildLabel = "task.publish.unstable-${UUID.randomUUID().toString()}"
 def sourcePath = "${workspacePath}/src"
 
diff --git a/cicd/pipelines/tasks/task_release_cut.jenkins b/cicd/pipelines/tasks/task_release_cut.jenkins
index 75c0d81..78cb509 100644
--- a/cicd/pipelines/tasks/task_release_cut.jenkins
+++ b/cicd/pipelines/tasks/task_release_cut.jenkins
@@ -2,7 +2,7 @@
 
 library 'functions'
 
-def workspacePath = "/home/jenkins/workspace"
+def workspacePath = "/home/jenkins/agent/workspace"
 def buildLabel = "task.publish.unstable-${UUID.randomUUID().toString()}"
 def sourcePath = "${workspacePath}/src"
 
diff --git a/cicd/pipelines/tasks/task_update_mirrors.jenkins b/cicd/pipelines/tasks/task_update_mirrors.jenkins
index a10efaf..37f9722 100644
--- a/cicd/pipelines/tasks/task_update_mirrors.jenkins
+++ b/cicd/pipelines/tasks/task_update_mirrors.jenkins
@@ -1,6 +1,6 @@
 #!/usr/bin/env groovy
 
-def workspacePath = "/home/jenkins/workspace"
+def workspacePath = "/home/jenkins/agent/workspace"
 def buildLabel = "task.update.mirrors-${UUID.randomUUID().toString()}"
 def sourcePath = "${workspacePath}/src"