File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,13 @@ pipeline {
1919 stage(' Check for typos' ) {
2020 steps {
2121 sh '''
22- curl -qsL https://github.com/crate-ci/typos/releases/download/v1.13.7/typos-v1.13.7-x86_64-unknown-linux-musl.tar.gz | tar xvzf - ./typos
23- curl -qsL https://github.com/halkeye/typos-json-to-checkstyle/releases/download/v0.1.1/typos-checkstyle-v0.1.1-x86_64 > typos-checkstyle && chmod 0755 typos-checkstyle
24- ./typos --format json | ./typos-checkstyle - > checkstyle.xml || true
22+ curl -qsL https://github.com/crate-ci/typos/releases/download/v1.33.1/typos-v1.33.1-x86_64-unknown-linux-musl.tar.gz | tar xvzf - ./typos
23+ ./typos --format json > typos.sarif || true
2524 '''
2625 }
2726 post {
2827 always {
29- recordIssues(tools : [checkStyle (id : ' typos' , name : ' Typos' , pattern : ' checkstyle.xml ' )])
28+ recordIssues(tools : [sarif (id : ' typos' , name : ' Typos' , pattern : ' typos.sarif ' )])
3029 }
3130 }
3231 }
You can’t perform that action at this time.
0 commit comments