Skip to content

Commit ce42e1a

Browse files
authored
Merge branch 'main' into mh-add-check-all
2 parents 5433e1f + fccdaec commit ce42e1a

File tree

8 files changed

+259
-250
lines changed

8 files changed

+259
-250
lines changed

.github/workflows/ci.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4
608608

609609
- name: Set up Python with caching of pip dependencies
610610
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0

.github/workflows/nightly-pytest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474

7575
steps:
7676
- name: Check out a copy of the OpenFermion git repository
77-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
77+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
7878

7979
- name: Set up Python ${{matrix.python-version}}
8080
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5

.github/workflows/osv-scanner.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
SHELLOPTS: ${{inputs.debug && 'xtrace' || '' }}
9090
steps:
9191
- name: Check out a copy of the git repository
92-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
92+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
9393
with:
9494
fetch-depth: 0
9595

@@ -100,7 +100,7 @@ jobs:
100100
101101
- name: Run OSV scanner on existing code
102102
# yamllint disable rule:line-length
103-
uses: google/osv-scanner-action/osv-scanner-action@e92b5d07338d4f0ba0981dffed17c48976ca4730 # v2.2.3
103+
uses: google/osv-scanner-action/osv-scanner-action@9bb69575e74019c2ad085a1860787043adf47ccb # v2.2.4
104104
continue-on-error: true
105105
with:
106106
scan-args: |-
@@ -118,7 +118,7 @@ jobs:
118118
119119
- name: Run OSV scanner on new code
120120
# yamllint disable rule:line-length
121-
uses: google/osv-scanner-action/osv-scanner-action@e92b5d07338d4f0ba0981dffed17c48976ca4730 # v2.2.3
121+
uses: google/osv-scanner-action/osv-scanner-action@9bb69575e74019c2ad085a1860787043adf47ccb # v2.2.4
122122
continue-on-error: true
123123
with:
124124
scan-args: |-
@@ -130,7 +130,7 @@ jobs:
130130
131131
- name: Run the OSV scanner reporter
132132
# yamllint disable rule:line-length
133-
uses: google/osv-scanner-action/osv-reporter-action@e92b5d07338d4f0ba0981dffed17c48976ca4730 # v2.2.3
133+
uses: google/osv-scanner-action/osv-reporter-action@9bb69575e74019c2ad085a1860787043adf47ccb # v2.2.4
134134
with:
135135
scan-args: |-
136136
--output=osv-results.sarif
@@ -142,13 +142,13 @@ jobs:
142142
- name: Upload results to the repository's code-scanning results dashboard
143143
id: upload_artifact
144144
# yamllint disable rule:line-length
145-
uses: github/codeql-action/upload-sarif@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.29.5
145+
uses: github/codeql-action/upload-sarif@014f16e7ab1402f30e7c3329d33797e7948572db # v3.29.5
146146
with:
147147
sarif_file: osv-results.sarif
148148

149149
- if: github.event.inputs.debug == true
150150
name: Upload results as artifacts to the workflow Summary page
151-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
151+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
152152
with:
153153
name: SARIF file
154154
path: results.sarif

.github/workflows/scorecard-scanner.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
timeout-minutes: 15
7070
steps:
7171
- name: Check out a copy of the git repository
72-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
72+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
7373
with:
7474
persist-credentials: false
7575

@@ -85,13 +85,13 @@ jobs:
8585
publish_results: true
8686

8787
- name: Upload results to code-scanning dashboard
88-
uses: github/codeql-action/upload-sarif@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.29.5
88+
uses: github/codeql-action/upload-sarif@014f16e7ab1402f30e7c3329d33797e7948572db # v3.29.5
8989
with:
9090
sarif_file: scorecard-results.sarif
9191

9292
- if: github.event.inputs.debug == true
9393
name: Upload results as artifacts to the workflow Summary page
94-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
94+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
9595
with:
9696
name: SARIF file
9797
path: results.sarif

0 commit comments

Comments
 (0)