Skip to content

Commit a448df2

Browse files
committed
ci: Added Audit uv.lock File stage to Jenkinsfile
1 parent 85694ef commit a448df2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Jenkinsfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,16 @@ pipeline {
604604
}
605605
}
606606
}
607+
stage('Audit uv.lock File'){
608+
steps{
609+
catchError(
610+
buildResult: 'UNSTABLE',
611+
message: 'uv-secure found issues. uv.lock might need to updated'
612+
) {
613+
sh './venv/bin/uvx uv-secure --cache-path=/tmp/cache/uv-secure uv.lock'
614+
}
615+
}
616+
}
607617
stage('MyPy Static Analysis') {
608618
environment{
609619
MYPYPATH='build/lib'

0 commit comments

Comments
 (0)