Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/validate-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
cache: true

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v7

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maintainability (P3), medium confidence: Action pinned to mutable tag @v7. Pinning to the full commit SHA prevents unexpected changes if the tag is force-pushed. This is consistent with the existing pattern in this repo, so low severity.

Suggested change
Suggested change
uses: actions/setup-node@v7
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v7.0.0
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/validate-docs.yaml, line 32:

<issue>
Action pinned to mutable tag `@v7`. Pinning to the full commit SHA prevents unexpected changes if the tag is force-pushed. This is consistent with the existing pattern in this repo, so low severity.
</issue>

with:
node-version: "20"

Expand Down