@@ -115,7 +115,7 @@ jobs:
115115 run-scc :
116116 name : source code complexity scan
117117 if : ${{ inputs.perform-complexity-checks == true }}
118- uses : chef/common-github-actions/.github/workflows/tools/ scc.yml@main
118+ uses : chef/common-github-actions/.github/workflows/scc.yml@main
119119 with :
120120 outputfilename : ${{ inputs.scc-output-filename }}
121121 needs : echo-inputs
@@ -133,7 +133,7 @@ jobs:
133133 # cargo clippy --all-targets --all-features -- -D warnings
134134 - name : Precompilation tests for Ruby
135135 if : ${{ inputs.language == 'Ruby' && inputs.perform-complexity-checks == true}}
136- uses : chef/common-github-actions/.github/workflows/tools/ rubocop.yml@main
136+ uses : chef/common-github-actions/.github/workflows/rubocop.yml@main
137137 # run: echo 'hello world'
138138 - name : Precompilation tests for Go
139139 if : ${{ inputs.language == 'Go' && inputs.perform-complexity-checks == true}}
@@ -184,17 +184,17 @@ jobs:
184184 # security scans
185185 run-trufflehog :
186186 if : ${{ inputs.perform-trufflehog-scan == true }}
187- uses : chef/common-github-actions/.github/workflows/tools/ trufflehog.yml@main
187+ uses : chef/common-github-actions/.github/workflows/trufflehog.yml@main
188188 needs : run-scc
189189
190190 run-srcclr :
191191 if : ${{ inputs.perform-srcclr-scan == true }}
192- uses : chef/common-github-actions/.github/workflows/tools/ srcclr.yml@main
192+ uses : chef/common-github-actions/.github/workflows/srcclr.yml@main
193193 needs : run-scc
194194
195195 run-veracode-sca :
196196 if : ${{ inputs.perform-veracode-sca-scan == true }}
197- uses : chef/common-github-actions/.github/workflows/tools/ veracode-sca.yml@main
197+ uses : chef/common-github-actions/.github/workflows/veracode-sca.yml@main
198198 needs : run-scc
199199 secrets : inherit
200200
@@ -204,7 +204,7 @@ jobs:
204204 # for polaris, coverity, SRM (SBOM), and SCA (BlackDuck SCA) - Chef uses polaris and SBOM later in this script
205205 run-blackduck-sca :
206206 if : ${{ inputs.perform-blackduck-sca-scan == true }}
207- uses : chef/common-github-actions/.github/workflows/tools/ blackduck-sca.yml@main
207+ uses : chef/common-github-actions/.github/workflows/blackduck-sca.yml@main
208208 needs : run-scc
209209 secrets : inherit
210210
@@ -295,14 +295,14 @@ jobs:
295295 steps :
296296 - name : SonarQube scan for public repo
297297 if : ${{ inputs.visibility == 'public' }}
298- uses : chef/common-github-actions/.github/workflows/tools/ sonarqube-public-repo.yml@main
298+ uses : chef/common-github-actions/.github/workflows/sonarqube-public-repo.yml@main
299299 with :
300300 unit-tests : ${{ inputs.unit-tests }}
301301 secrets : inherit
302302
303303 - name : SonarQube scan for private and internal repos
304304 if : ${{ inputs.visibility == 'internal' || inputs.visibility == 'private' }}
305- uses : chef/common-github-actions/.github/workflows/tools/ sonarqube-private-internal-repo.yml@main
305+ uses : chef/common-github-actions/.github/workflows/sonarqube-private-internal-repo.yml@main
306306 with :
307307 unit-tests : ${{ inputs.unit-tests }}
308308 secrets : inherit
@@ -317,13 +317,13 @@ jobs:
317317
318318 run-blackduck-polaris :
319319 if : ${{ inputs.perform-blackduck-polaris == true }}
320- uses : chef/common-github-actions/.github/workflows/tools/ blackduck-polaris.yml@main
320+ uses : chef/common-github-actions/.github/workflows/blackduck-polaris.yml@main
321321 needs : ci-build
322322 secrets : inherit
323323
324324 # generate bills-of-materials
325325 calculate-sbom :
326326 if : ${{ inputs.generate-sbom == true }}
327- uses : chef/common-github-actions/.github/workflows/tools/ sbom.yml@main
327+ uses : chef/common-github-actions/.github/workflows/sbom.yml@main
328328 needs : ci-build
329329 secrets : inherit
0 commit comments