Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/agents-md-integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,22 +120,22 @@ jobs:
contents: read
steps:
- name: Checkout caller repo
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
persist-credentials: false

- name: Load integrity check script
# The checker comes from THIS repo (public, pinned via workflows_ref),
# never from the caller's checkout, so a PR can't rewrite the check.
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
repository: Comfy-Org/github-workflows
ref: ${{ inputs.workflows_ref }}
path: _agents_md_integrity
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: '3.12'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/assign-prs-to-author.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
issues: write
steps:
- name: Assign unassigned PRs to their authors
uses: actions/github-script@v9
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const skipBots = ${{ inputs.skip-bots }};
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cursor-review-auto-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
steps:
- name: Generate GitHub App token
id: app-token
uses: actions/create-github-app-token@v3
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.CLOUD_CODE_BOT_PRIVATE_KEY }}
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/cursor-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ jobs:
within_cap: ${{ steps.count.outputs.within_cap }}
steps:
- name: Checkout PR repo
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -456,7 +456,7 @@ jobs:
PY

- name: Checkout PR repo
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -466,7 +466,7 @@ jobs:
# pinned via workflows_ref) — never from the PR checkout, so a
# malicious PR can't rewrite the prompt to exfiltrate the diff or
# smuggle instructions to the model.
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
repository: Comfy-Org/github-workflows
ref: ${{ inputs.workflows_ref }}
Expand Down Expand Up @@ -567,7 +567,7 @@ jobs:

- name: Upload findings artifact
if: always()
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: findings-${{ matrix.review_type }}-${{ matrix.model }}
path: /tmp/findings-out/findings.json
Expand All @@ -587,13 +587,13 @@ jobs:
pull-requests: write
steps:
- name: Checkout PR repo
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
fetch-depth: 0
persist-credentials: false

- name: Load cursor-review assets
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
repository: Comfy-Org/github-workflows
ref: ${{ inputs.workflows_ref }}
Expand All @@ -615,7 +615,7 @@ jobs:
echo "$HOME/.cursor/bin" >> "$GITHUB_PATH"

- name: Download panel findings
uses: actions/download-artifact@v8
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: /tmp/panel
pattern: findings-*
Expand Down Expand Up @@ -820,7 +820,7 @@ jobs:
- name: Mint bot-identity token (optional)
id: bot_token
if: ${{ inputs.bot_app_id != '' }}
uses: actions/create-github-app-token@v3
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
with:
app-id: ${{ inputs.bot_app_id }}
private-key: ${{ secrets.BOT_APP_PRIVATE_KEY }}
Expand Down Expand Up @@ -877,7 +877,7 @@ jobs:
contents: read
steps:
- name: Load cursor-review assets
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
repository: Comfy-Org/github-workflows
ref: ${{ inputs.workflows_ref }}
Expand Down Expand Up @@ -931,7 +931,7 @@ jobs:
contents: read
steps:
- name: Load cursor-review assets
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
repository: Comfy-Org/github-workflows
ref: ${{ inputs.workflows_ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-agents-md-integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: '3.12'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-bump-callers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-cursor-review-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: '3.12'

Expand Down
Loading