CI: Fixes for various main steps (#74768)

Fixes for various main steps
This commit is contained in:
Kevin Minehart
2023-09-13 00:44:33 +03:00
committed by GitHub
parent ac314855eb
commit 69737cba6d
7 changed files with 114 additions and 102 deletions
+2 -1
View File
@@ -29,8 +29,9 @@ trigger = {
def shellcheck_step():
return {
"name": "shellcheck",
"image": images["shellcheck"],
"image": images["ubuntu"],
"commands": [
"apt-get update -yq && apt-get install shellcheck",
"shellcheck -e SC1071 -e SC2162 scripts/**/*.sh",
],
}