5454 outputs :
5555 num_code_changes : ${{ steps.get_code_changes.outputs.num_code_changes }}
5656 steps :
57- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
57+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
5858 with :
5959 fetch-depth : 0
6060 - name : Check for appropriately named topic branch
@@ -83,10 +83,10 @@ jobs:
8383 image : ghcr.io/ornladios/adios2:ci-formatting
8484
8585 steps :
86- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
86+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
8787 with :
8888 path : gha
89- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
89+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
9090 with :
9191 ref : ${{ github.event.pull_request.head.sha }}
9292 path : source
@@ -175,15 +175,15 @@ jobs:
175175 parallel : mpich
176176
177177 steps :
178- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
178+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
179179 with :
180180 path : gha
181- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
181+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
182182 with :
183183 ref : ${{ github.event.pull_request.head.sha }}
184184 path : source
185185 - name : Restore cache
186- uses : actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
186+ uses : actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v4
187187 id : restore-cache
188188 with :
189189 path : .ccache
@@ -203,7 +203,7 @@ jobs:
203203 - name : Print ccache statistics
204204 run : ccache -s | tee $GITHUB_STEP_SUMMARY
205205 - name : Save cache
206- uses : actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
206+ uses : actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v4
207207 if : ${{ github.ref_name == 'master' && steps.restore-cache.outputs.cache-hit != 'true' }}
208208 id : save-cache
209209 with :
@@ -243,15 +243,15 @@ jobs:
243243 parallel : [mpich]
244244
245245 steps :
246- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
246+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
247247 with :
248248 path : gha
249- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
249+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
250250 with :
251251 ref : ${{ github.event.pull_request.head.sha }}
252252 path : source
253253 - name : Restore cache
254- uses : actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
254+ uses : actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v4
255255 id : restore-cache
256256 with :
257257 path : .ccache
@@ -271,7 +271,7 @@ jobs:
271271 - name : Print ccache statistics
272272 run : ccache -s
273273 - name : Save cache
274- uses : actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
274+ uses : actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v4
275275 if : ${{ github.ref_name == 'master' && steps.restore-cache.outputs.cache-hit != 'true' }}
276276 id : save-cache
277277 with :
@@ -318,17 +318,17 @@ jobs:
318318 name : macos (${{ matrix.image }}, ${{ matrix.compiler}}, ${{ matrix.arch }}, ${{ matrix.shared }}, ${{ matrix.parallel }})
319319
320320 steps :
321- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
321+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
322322 with :
323323 path : gha
324- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
324+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
325325 with :
326326 ref : ${{ github.event.pull_request.head.sha }}
327327 path : source
328328 - name : Setup
329329 run : gha/scripts/ci/gh-actions/macos-setup.sh
330330 - name : Restore cache
331- uses : actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
331+ uses : actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v4
332332 id : restore-cache
333333 with :
334334 path : .ccache
@@ -346,7 +346,7 @@ jobs:
346346 - name : Print ccache statistics
347347 run : ccache -s
348348 - name : Save cache
349- uses : actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
349+ uses : actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v4
350350 if : ${{ github.ref_name == 'master' && steps.restore-cache.outputs.cache-hit != 'true' }}
351351 id : save-cache
352352 with :
@@ -395,10 +395,10 @@ jobs:
395395 shell : bash
396396
397397 steps :
398- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
398+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
399399 with :
400400 path : gha
401- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
401+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
402402 with :
403403 ref : ${{ github.event.pull_request.head.sha }}
404404 path : source
@@ -432,7 +432,7 @@ jobs:
432432 baseos : [ubuntu-bionic]
433433
434434 steps :
435- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
435+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
436436 with :
437437 ref : ${{ github.event.pull_request.head.sha }}
438438 path : ci-source
@@ -456,7 +456,7 @@ jobs:
456456 docker save -o ci-docker.tar ornladios/adios2:ci-tmp
457457 ls -lah ci-docker.tar
458458 - name : Upload
459- uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
459+ uses : actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v4
460460 with :
461461 retention-days : 1
462462 name : ci-docker ${{ matrix.baseos }} ${{ github.sha }}
@@ -509,14 +509,14 @@ jobs:
509509 shell : bash -c "docker exec adios2-ci bash --login -e $(echo {0} | sed 's|/home/runner/work|/__w|g')"
510510
511511 steps :
512- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
512+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
513513 if : ${{ matrix.repo != '' }}
514514 with :
515515 repository : ${{ matrix.repo }}
516516 ref : ${{ matrix.ref }}
517517 path : source
518518 - name : Download CI docker image
519- uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v4
519+ uses : actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v4
520520 with :
521521 name : ci-docker ubuntu-bionic ${{ github.sha }}
522522 - name : Initialize containers
@@ -568,14 +568,14 @@ jobs:
568568 language : [ 'cpp' ]
569569
570570 steps :
571- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
571+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
572572 with :
573573 path : gha
574- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
574+ - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
575575 with :
576576 ref : ${{ github.event.pull_request.head.sha }}
577577 path : source
578- - uses : actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
578+ - uses : actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v4
579579 id : restore-cache
580580 with :
581581 path : .ccache
@@ -584,7 +584,7 @@ jobs:
584584 ccache-codeql
585585 - run : ccache -z
586586 - name : Initialize CodeQL
587- uses : github/codeql-action/init@014f16e7ab1402f30e7c3329d33797e7948572db # v3
587+ uses : github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3
588588 with :
589589 languages : ${{ matrix.language }}
590590 source-root : source
@@ -597,7 +597,7 @@ jobs:
597597 - name : Build
598598 run : gha/scripts/ci/gh-actions/run.sh build
599599 - name : Perform CodeQL Analysis
600- uses : github/codeql-action/analyze@014f16e7ab1402f30e7c3329d33797e7948572db # v3
600+ uses : github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3
601601 with :
602602 category : " /language:${{matrix.language}}"
603603 output : sarif-results
@@ -612,17 +612,17 @@ jobs:
612612 input : sarif-results/cpp.sarif
613613 output : sarif-results/cpp.sarif
614614 - name : Upload SARIF
615- uses : github/codeql-action/upload-sarif@014f16e7ab1402f30e7c3329d33797e7948572db # v3
615+ uses : github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3
616616 with :
617617 sarif_file : sarif-results/cpp.sarif
618618 - name : Upload loc as a Build Artifact
619- uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
619+ uses : actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v4
620620 with :
621621 name : sarif-results
622622 path : sarif-results
623623 retention-days : 1
624624 - run : ccache -s | tee "${GITHUB_STEP_SUMMARY}"
625- - uses : actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
625+ - uses : actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v4
626626 if : ${{ github.ref_name == 'master' && steps.restore-cache.outputs.cache-hit != 'true' }}
627627 id : save-cache
628628 with :
0 commit comments