ci: pin all actions/checkout to v6.0.3, fix stale SHAs, document missing workflows#35
Closed
bryanfawcett wants to merge 1 commit into
Closed
ci: pin all actions/checkout to v6.0.3, fix stale SHAs, document missing workflows#35bryanfawcett wants to merge 1 commit into
bryanfawcett wants to merge 1 commit into
Conversation
…ing workflows - Replace untagged post-release SHA (9c091bb) and stale v6.0.2 SHA (de0fac2e) with the correct v6.0.3 tagged SHA (df4cb1c) across all 18 reusable and scheduled workflow files - Update pnpm/action-setup stale v6.0.2 SHA in reusable-ci-typescript-lib.yml to the current v6.0.9 SHA (0ebf471) already used elsewhere - Correct version comments for pnpm/action-setup (v6 → v6.0.9) and actions/setup-node (v6 → v6.4.0) across docs-mdx, typescript, nextjs-monorepo, and typescript-lib workflows - Add reusable-ci-docker.yml, reusable-ci-typescript-lib.yml, and reusable-ci-terraform.yml to the README.md reusable workflows table (three undocumented workflows now visible) - Add hashicorp/setup-terraform@* and terraform-linters/setup-tflint@* to the ORG_SETTINGS.md Actions allow-list (both used by reusable-ci-terraform.yml but previously absent from the list) Signed-off-by: Bryan Fawcett <bryan@nyuchi.com>
Contributor
Author
|
Closing as superseded — part of the same duplicate-PR pileup. This PR pinned Generated by Claude Code |
13 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Comprehensive supply-chain hygiene pass across all 18 reusable and scheduled workflow files. Replaces two stale/incorrect
actions/checkoutSHAs with the correct v6.0.3 tagged release SHA, corrects version comments onpnpm/action-setupandactions/setup-node, bringsreusable-ci-typescript-lib.ymlin line with the rest of the org onpnpm/action-setup, documents three previously undocumented reusable workflows in README.md, and closes a gap in the ORG_SETTINGS.md Actions allow-list.Linked issue(s)
N/A — routine maintenance pass.
Type of change
ci— CI configurationBreaking change?
No breaking changes. All SHAs are exact equivalents of the version already in use; only comments and one genuinely stale SHA (v6.0.2 → v6.0.9 for pnpm in typescript-lib) were updated.
How has this been tested?
9c091bb) or the stale v6.0.2 SHA (de0fac2e) across the entire.github/workflows/tree.pnpm/action-setuppins now read# v6.0.9; allactions/setup-nodepins read# v6.4.0; allactions/checkoutpins read# v6.0.3.Checklist
Process
Signed-off-by:trailer, added bygit commit -s).<type>/<short-kebab-description>.NA-03 merge blockers
Details
SHA corrections (actions/checkout)
All 18 workflow files previously used one of two incorrect SHAs:
9c091bb2# v6comment was inaccuratedf4cb1c0de0fac2edf4cb1c0Files updated:
reusable-ci-container.yml,reusable-ci-docker.yml,reusable-ci-docs-mdx.yml,reusable-ci-nextjs-monorepo.yml,reusable-ci-opentofu.yml,reusable-ci-python-monorepo.yml,reusable-ci-rust-monorepo.yml,reusable-ci-solidity.yml,reusable-ci-terraform.yml,reusable-ci-typescript-lib.yml,reusable-ci-typescript.yml,reusable-codeql.yml,reusable-dependency-review.yml,reusable-lint.yml,reusable-openssf-scorecard.yml,reusable-release.yml,reusable-sbom.yml,scheduled-settings-audit.yml.pnpm/action-setup version bump (typescript-lib only)
reusable-ci-typescript-lib.ymlwas using the v6.0.2 SHA (71c92474) forpnpm/action-setupwhile every other workflow already used v6.0.9 (0ebf4713). Brought into alignment.Version comment corrections (docs-mdx, typescript, nextjs-monorepo, typescript-lib)
Several files had
# v6comment onpnpm/action-setupandactions/setup-nodeinstead of the full semver. Updated to# v6.0.9and# v6.4.0respectively.README.md — three missing workflow entries
reusable-ci-docker.yml,reusable-ci-typescript-lib.yml, andreusable-ci-terraform.ymlexisted on disk but were absent from the reusable workflows table in README.md. All three added.ORG_SETTINGS.md — Actions allow-list gap
reusable-ci-terraform.ymlcallshashicorp/setup-terraformandterraform-linters/setup-tflint, neither of which appeared in the org Actions allow-list. Both added under the IaC section.Additional notes
Commit is DCO-signed (
Signed-off-by: Bryan Fawcett <bryan@nyuchi.com>). GPG signing is unavailable in this remote container session — the squash-merge commit onmainmust be signed by the human operator when promoting this PR to ready-for-review and merging.Generated by Claude Code