@@ -149,7 +149,7 @@ jobs:
149149 echo base=${{github.ref_name}} >> "$GITHUB_ENV"
150150
151151 - name : Check out a copy of the OpenFermion git repository
152- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
152+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
153153
154154 - name : Determine files changed by this ${{github.event_name}} event
155155 uses : dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
@@ -199,7 +199,7 @@ jobs:
199199 timeout-minutes : 10
200200 steps :
201201 - name : Check out a copy of the git repository
202- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
202+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
203203
204204 - name : Set up Python with caching of pip dependencies
205205 uses : actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
@@ -228,7 +228,7 @@ jobs:
228228 timeout-minutes : 10
229229 steps :
230230 - name : Check out a copy of the git repository
231- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
231+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
232232 with :
233233 fetch-depth : 0
234234
@@ -257,7 +257,7 @@ jobs:
257257 timeout-minutes : 10
258258 steps :
259259 - name : Check out a copy of the git repository
260- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
260+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
261261
262262 - name : Set up Python and restore cache
263263 uses : actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
@@ -284,7 +284,7 @@ jobs:
284284 timeout-minutes : 10
285285 steps :
286286 - name : Check out a copy of the git repository
287- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
287+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
288288
289289 - name : Set up Python and restore cache
290290 uses : actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
@@ -324,7 +324,7 @@ jobs:
324324 fail-fast : false
325325 steps :
326326 - name : Check out a copy of the git repository
327- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
327+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
328328
329329 - name : Set up Python and restore cache
330330 uses : actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
@@ -371,7 +371,7 @@ jobs:
371371 fail-fast : false
372372 steps :
373373 - name : Check out a copy of the git repository
374- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
374+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
375375
376376 - name : Set up Python and restore cache
377377 uses : actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
@@ -413,7 +413,7 @@ jobs:
413413 timeout-minutes : 15
414414 steps :
415415 - name : Check out a copy of the git repository
416- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
416+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
417417
418418 # Note: deliberately not using our Python cache here b/c this runs
419419 # a different version of Python.
@@ -439,7 +439,7 @@ jobs:
439439 timeout-minutes : 15
440440 steps :
441441 - name : Check out a copy of the git repository
442- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
442+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
443443 with :
444444 fetch-depth : 0
445445
@@ -469,7 +469,7 @@ jobs:
469469 changed_files : ${{needs.changes.outputs.yaml_files}}
470470 steps :
471471 - name : Check out a copy of the git repository
472- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
472+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
473473
474474 - name : Set up yamllint output problem matcher
475475 run : echo "::add-matcher::.github/problem-matchers/yamllint.json"
@@ -490,7 +490,7 @@ jobs:
490490 changed_files : ${{needs.changes.outputs.json_files}}
491491 steps :
492492 - name : Check out a copy of the git repository
493- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
493+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
494494
495495 - name : Install jsonlint
496496 run : npm install -g @prantlf/jsonlint
@@ -511,7 +511,7 @@ jobs:
511511 changed_files : ${{needs.changes.outputs.cff_files}}
512512 steps :
513513 - name : Check out a copy of the git repository
514- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
514+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
515515
516516 - name : Install cffconvert
517517 run : pip install cffconvert
@@ -530,7 +530,7 @@ jobs:
530530 changed_files : ${{needs.changes.outputs.docker_files}}
531531 steps :
532532 - name : Check out a copy of the git repository
533- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
533+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
534534
535535 # Note: there is a hadolint GitHub Actions available, but it only accepts
536536 # one Dockerfile to check. We have > 1 file to check, so we need the CLI.
@@ -554,7 +554,7 @@ jobs:
554554 changed_files : ${{needs.changes.outputs.gha_files}}
555555 steps :
556556 - name : Check out a copy of the git repository
557- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
557+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
558558
559559 # The next action simply fails if there are any unpinned actions.
560560 - name : Verify that all workflow actions have pinned versions
@@ -580,7 +580,7 @@ jobs:
580580 changed_files : ${{needs.changes.outputs.shell_files}}
581581 steps :
582582 - name : Check out a copy of the git repository
583- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
583+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
584584
585585 - name : Set up shellcheck output problem matcher
586586 run : echo "::add-matcher::.github/problem-matchers/shellcheck.json"
@@ -604,7 +604,7 @@ jobs:
604604 timeout-minutes : 5
605605 steps :
606606 - name : Check out a copy of the git repository
607- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
607+ uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
608608
609609 - name : Set up Python with caching of pip dependencies
610610 uses : actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
0 commit comments