Skip to content

Commit 87a7fe9

Browse files
fix(ci): pin third-party actions to full commit SHAs (#127)
fix(ci): pin third-party actions to full commit SHAs The account's Actions policy requires a full-length SHA ref. A tag or branch ref is refused at startup — `startup_failure`, no jobs, "this workflow graph cannot be shown" — so these workflows could not run at all. This resolves each ref to the commit it currently points at and records the ref in a trailing comment, e.g. `actions/checkout@<sha> # v4`. `dtolnay/rust-toolchain` takes its toolchain from the ref itself, so those steps also gained an explicit `with: toolchain:` input; without it, a SHA ref would silently lose the channel. No behaviour is intended to change beyond the pins.
1 parent 052e4c8 commit 87a7fe9

1 file changed

Lines changed: 27 additions & 27 deletions

File tree

.github/workflows/main-estate-audit.yml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -10,82 +10,82 @@ jobs:
1010
estate-audit:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
1414

1515
- name: Required Files Gate
16-
uses: hyperpolymath/cicd-suite/actions/required-files-check@main
16+
uses: hyperpolymath/cicd-suite/actions/required-files-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
1717

1818
- name: Code Hygiene Gate
19-
uses: hyperpolymath/cicd-suite/actions/code-hygiene-check@main
19+
uses: hyperpolymath/cicd-suite/actions/code-hygiene-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
2020

2121
- name: Manifest Validation Gate
22-
uses: hyperpolymath/cicd-suite/actions/manifest-check@main
22+
uses: hyperpolymath/cicd-suite/actions/manifest-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
2323

2424
- name: Idris2 ABI Purity Gate
25-
uses: hyperpolymath/cicd-suite/actions/idris2-abi-check@main
25+
uses: hyperpolymath/cicd-suite/actions/idris2-abi-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
2626

2727
- name: Zig Hexadeca API Gate
28-
uses: hyperpolymath/cicd-suite/actions/zig-hexadeca-check@main
28+
uses: hyperpolymath/cicd-suite/actions/zig-hexadeca-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
2929

3030
- name: Contractile Validation Gate
31-
uses: hyperpolymath/cicd-suite/actions/contractile-validation-check@main
31+
uses: hyperpolymath/cicd-suite/actions/contractile-validation-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
3232

3333
- name: Recipes Set Validation Gate
34-
uses: hyperpolymath/cicd-suite/actions/recipes-set-check@main
34+
uses: hyperpolymath/cicd-suite/actions/recipes-set-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
3535

3636
- name: Affirmation Document Gate
37-
uses: hyperpolymath/cicd-suite/actions/affirmation-check@main
37+
uses: hyperpolymath/cicd-suite/actions/affirmation-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
3838

3939
- name: Academic Referencing Gate
40-
uses: hyperpolymath/cicd-suite/actions/referencing-check@main
40+
uses: hyperpolymath/cicd-suite/actions/referencing-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
4141

4242
- name: Semantic Audit Gate
43-
uses: hyperpolymath/cicd-suite/actions/semantic-audit-check@main
43+
uses: hyperpolymath/cicd-suite/actions/semantic-audit-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
4444

4545
- name: SPDX License Gate
46-
uses: hyperpolymath/cicd-suite/actions/spdx-license-check@main
46+
uses: hyperpolymath/cicd-suite/actions/spdx-license-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
4747

4848
- name: Proof Runner Gate
49-
uses: hyperpolymath/cicd-suite/actions/proof-runner-check@main
49+
uses: hyperpolymath/cicd-suite/actions/proof-runner-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
5050

5151
- name: PRAT Testing Gate
52-
uses: hyperpolymath/cicd-suite/actions/prat-check@main
52+
uses: hyperpolymath/cicd-suite/actions/prat-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
5353

5454
- name: Panic Attack & Pons Gate
55-
uses: hyperpolymath/cicd-suite/actions/custom-tools-check@main
55+
uses: hyperpolymath/cicd-suite/actions/custom-tools-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
5656

5757
- name: WWW & Well-Known Compliance Gate
58-
uses: hyperpolymath/cicd-suite/actions/www-compliance-check@main
58+
uses: hyperpolymath/cicd-suite/actions/www-compliance-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
5959

6060
- name: BoJ Cartridge Validation Gate
61-
uses: hyperpolymath/cicd-suite/actions/boj-cartridge-check@main
61+
uses: hyperpolymath/cicd-suite/actions/boj-cartridge-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
6262

6363
- name: Formatting Validation Gate
64-
uses: hyperpolymath/cicd-suite/actions/formatting-check@main
64+
uses: hyperpolymath/cicd-suite/actions/formatting-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
6565

6666
- name: Accreditations & Badges Gate
67-
uses: hyperpolymath/cicd-suite/actions/badges-check@main
67+
uses: hyperpolymath/cicd-suite/actions/badges-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
6868

6969
- name: Metrics Extraction Gate
70-
uses: hyperpolymath/cicd-suite/actions/metrics-check@main
70+
uses: hyperpolymath/cicd-suite/actions/metrics-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
7171

7272
- name: Linguist & Banned Languages Gate
73-
uses: hyperpolymath/cicd-suite/actions/linguist-check@main
73+
uses: hyperpolymath/cicd-suite/actions/linguist-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
7474

7575
- name: Test & Benchmarks Dashboard Gate
76-
uses: hyperpolymath/cicd-suite/actions/tests-benches-check@main
76+
uses: hyperpolymath/cicd-suite/actions/tests-benches-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
7777

7878
- name: Hosting & Site Status Gate
79-
uses: hyperpolymath/cicd-suite/actions/hosting-check@main
79+
uses: hyperpolymath/cicd-suite/actions/hosting-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
8080

8181
- name: Git-Sea Analytics Gate
82-
uses: hyperpolymath/cicd-suite/actions/gitsea-check@main
82+
uses: hyperpolymath/cicd-suite/actions/gitsea-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
8383

8484
- name: Trust & Humans Validation Gate
85-
uses: hyperpolymath/cicd-suite/actions/trust-humans-check@main
85+
uses: hyperpolymath/cicd-suite/actions/trust-humans-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
8686

8787
- name: Are We UnAPI Gate (Secret Scanning)
88-
uses: hyperpolymath/cicd-suite/actions/secrets-check@main
88+
uses: hyperpolymath/cicd-suite/actions/secrets-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main
8989

9090
- name: Reasonably Good Token Validation Gate
91-
uses: hyperpolymath/cicd-suite/actions/vaulted-tokens-check@main
91+
uses: hyperpolymath/cicd-suite/actions/vaulted-tokens-check@180b419825d238f8b606584c970a81dfa7cb6f81 # main

0 commit comments

Comments
 (0)