-
Notifications
You must be signed in to change notification settings - Fork 1
build(deps): bump actions/checkout from 4 to 6 #67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -9,7 +9,7 @@ jobs: | |||||
|
|
||||||
| steps: | ||||||
| - name: Checkout repo | ||||||
| uses: actions/checkout@v4 | ||||||
| uses: actions/checkout@v6 | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: Pin Prompt for AI agents
Suggested change
|
||||||
|
|
||||||
| - name: Run Codex | ||||||
| uses: openai/codex-action@c25d10f3f498316d4b2496cc4c6dd58057a7b031 # v1 | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -20,7 +20,7 @@ jobs: | |||||
|
|
||||||
| steps: | ||||||
| - name: Checkout code | ||||||
| uses: actions/checkout@v4 | ||||||
| uses: actions/checkout@v6 | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 actions/checkout pinned to floating tag Same issue as in
Suggested change
Was this helpful? React with 👍 or 👎 to provide feedback. |
||||||
|
|
||||||
| - name: Setup Node.js | ||||||
| uses: actions/setup-node@v4 | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 actions/checkout pinned to mutable tag instead of commit SHA, inconsistent with all other workflows
Every other workflow in the repository (
ci.yml,pr-check.yml,deploy.yml) pinsactions/checkoutto the exact commit SHA@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2. This PR changescodex.ymlto use the mutable tag@v6without a SHA pin, which is both a security risk (a compromised tag could inject malicious code into the workflow) and inconsistent with the repository's established pattern.Was this helpful? React with 👍 or 👎 to provide feedback.