Update GitHub Actions #297
Merged
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.
This pull request updates several GitHub Actions workflows to use specific commit SHA references for improved security and reproducibility, adds a CODEOWNERS file, and makes minor documentation and configuration improvements. The most significant changes are grouped below.
Workflow and CI/CD Improvements:
All GitHub Actions in workflow files (like
actions/checkout,actions/setup-node,github/codeql-action, andstreetsidesoftware/cspell-action) are now pinned to specific commit SHAs instead of version tags, enhancing security and traceability. Thepersist-credentials: falseoption is also set for most checkouts to prevent credential leakage. (.github/workflows/codeql-analysis.yml, .github/workflows/publish.yml, .github/workflows/spellcheck.yml, .github/workflows/super-linter.yml, .github/workflows/test.yml) [1] [2] [3] [4] [5] [6]The workflow file for publishing was renamed from
.github/workflows/pubish.ymlto.github/workflows/publish.yml, and permissions forcontents: readandid-token: writewere explicitly added.Repository Ownership and Documentation:
CODEOWNERSfile assigning ownership of all files to@coliff..cursor/rules/general.mdcConfiguration and Spellcheck:
.cspell.jsonto prevent false positives in spellchecking.These changes collectively improve repository security, maintainability, and clarity.