From 6219292745f274a25de47dc00b41acea9af8525a Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Tue, 28 Apr 2026 17:14:15 -0500 Subject: [PATCH] fix: Jenkinsfile had old credentials id autobuild, change to current jenkins-github id --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 43dbd29d4..3cedba6d5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -98,7 +98,7 @@ pipeline { sh "curl -O https://gitlab.com/Northern.tech/OpenSource/GODS/-/raw/master/parallel_git_rev_fetch.sh" sh "chmod u+x ./parallel_git_rev_fetch.sh" - withCredentials([sshUserPrivateKey(credentialsId:"autobuild", keyFileVariable: "key")]) { + withCredentials([sshUserPrivateKey(credentialsId:"jenkins-github", keyFileVariable: "key")]) { sh 'export GIT_SSH_COMMAND="ssh -i $key"; ./parallel_git_rev_fetch.sh revisions' } }